Skip to content

Commit

Permalink
Merge pull request #2306 from cpanato/go1173
Browse files Browse the repository at this point in the history
k8s-cloud-builder/k8s-ci-builder: Build image using go1.17.3
  • Loading branch information
k8s-ci-robot committed Nov 8, 2021
2 parents 9fe81b2 + f3b1fb9 commit 4924f02
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ dependencies:
match: go \d+.\d+

- name: "golang: after kubernetes/kubernetes update"
version: 1.17.2
version: 1.17.3
refPaths:
- path: images/releng/k8s-ci-builder/Dockerfile
match: FROM golang:\d+.\d+(alpha|beta|rc)?\.?(\d+)-\${OS_CODENAME} AS builder
Expand Down Expand Up @@ -200,13 +200,13 @@ dependencies:
match: REVISION:\ '\d+'

- name: "k8s.gcr.io/build-image/kube-cross: dependents bullseye"
version: v1.23.0-go1.17.2-bullseye.0
version: v1.23.0-go1.17.3-bullseye.0
refPaths:
- path: images/k8s-cloud-builder/variants.yaml
match: "KUBE_CROSS_VERSION: 'v((([0-9]+)\\.([0-9]+)\\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)'"

- name: "k8s.gcr.io/build-image/kube-cross: dependents buster"
version: v1.23.0-go1.17.2-buster.0
version: v1.23.0-go1.17.3-buster.0
refPaths:
- path: images/k8s-cloud-builder/variants.yaml
match: "KUBE_CROSS_VERSION: 'v((([0-9]+)\\.([0-9]+)\\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)'"
Expand Down Expand Up @@ -256,7 +256,7 @@ dependencies:
match: "CONFIG: 'go\\d+.\\d+-(bullseye|buster)'"

- name: "k8s.gcr.io/build-image/kube-cross: dependents (next candidate)"
version: v1.23.0-go1.17.2-buster.0
version: v1.23.0-go1.17.3-buster.0
refPaths:
- path: images/k8s-cloud-builder/variants.yaml
match: "KUBE_CROSS_VERSION: 'v((([0-9]+)\\.([0-9]+)\\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)'"
Expand Down
4 changes: 2 additions & 2 deletions images/k8s-cloud-builder/variants.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
variants:
v1.23-cross1.17-bullseye:
CONFIG: 'cross1.17'
KUBE_CROSS_VERSION: 'v1.23.0-go1.17.2-bullseye.0'
KUBE_CROSS_VERSION: 'v1.23.0-go1.17.3-bullseye.0'
v1.23-cross1.17-buster:
CONFIG: 'cross1.17'
KUBE_CROSS_VERSION: 'v1.23.0-go1.17.2-buster.0'
KUBE_CROSS_VERSION: 'v1.23.0-go1.17.3-buster.0'
v1.22-cross1.16-buster:
CONFIG: 'cross1.16'
KUBE_CROSS_VERSION: 'v1.22.0-go1.16.9-buster.0'
Expand Down
2 changes: 1 addition & 1 deletion images/releng/k8s-ci-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ARG OS_CODENAME

# The Golang version for the builder image should always be explicitly set to
# the Golang version of the kubernetes/kubernetes active development branch
FROM golang:1.17.2-${OS_CODENAME} AS builder
FROM golang:1.17.3-${OS_CODENAME} AS builder

WORKDIR /go/src/k8s.io/release

Expand Down
2 changes: 1 addition & 1 deletion images/releng/k8s-ci-builder/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ IMAGE = $(REGISTRY)/$(IMGNAME)
TAG ?= $(shell git describe --tags --always --dirty)

# Build args
GO_VERSION ?= 1.17.2
GO_VERSION ?= 1.17.3
OS_CODENAME ?= buster
IMAGE_ARG ?= $(IMAGE):$(TAG)-$(CONFIG)

Expand Down
4 changes: 2 additions & 2 deletions images/releng/k8s-ci-builder/variants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ variants:
OS_CODENAME: 'buster'
next:
CONFIG: next
GO_VERSION: '1.17.2'
GO_VERSION: '1.17.3'
OS_CODENAME: 'bullseye'
'1.23':
CONFIG: '1.23'
GO_VERSION: '1.17.2'
GO_VERSION: '1.17.3'
OS_CODENAME: 'buster'
'1.22':
CONFIG: '1.22'
Expand Down

0 comments on commit 4924f02

Please sign in to comment.