Skip to content

Commit a1aca71

Browse files
authored
Merge pull request #2168 from justaugustus/go117
Update/build Golang 1.17rc1 and 1.16.6 images
2 parents 1a3e5f5 + 99473d2 commit a1aca71

File tree

5 files changed

+19
-15
lines changed

5 files changed

+19
-15
lines changed

dependencies.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ dependencies:
9797
match: GO_VERSION\ \?=\ \d+.\d+(alpha|beta|rc)?\.?(\d+)?
9898

9999
- name: "golang: after kubernetes/kubernetes update"
100-
version: 1.16.5
100+
version: 1.16.6
101101
refPaths:
102102
- path: images/releng/k8s-ci-builder/Makefile
103103
match: GO_VERSION\ \?=\ \d+.\d+(alpha|beta|rc)?\.?(\d+)?
@@ -172,10 +172,6 @@ dependencies:
172172
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
173173
- path: images/releng/ci/variants.yaml
174174
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
175-
176-
- name: "golang: after kubernetes/kubernetes update (next candidate)"
177-
version: 1.16.5
178-
refPaths:
179175
- path: images/releng/k8s-ci-builder/variants.yaml
180176
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
181177

@@ -211,7 +207,7 @@ dependencies:
211207
match: go\d+.\d+
212208

213209
- name: "k8s.gcr.io/build-image/kube-cross: dependents (next candidate)"
214-
version: v1.16.6-1
210+
version: v1.17.0-rc.1-1
215211
refPaths:
216212
- path: images/k8s-cloud-builder/variants.yaml
217213
match: v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)-\d+

images/k8s-cloud-builder/variants.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
variants:
2+
cross1.17:
3+
CONFIG: 'cross1.17'
4+
KUBE_CROSS_VERSION: 'v1.17.0-rc.1-1'
25
cross1.16:
36
CONFIG: 'cross1.16'
47
KUBE_CROSS_VERSION: 'v1.16.6-1'

images/releng/k8s-ci-builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ARG OLD_BAZEL_VERSION
1717

1818
# The Golang version for the builder image should always be explicitly set to
1919
# the Golang version of the kubernetes/kubernetes active development branch
20-
FROM golang:1.16.5 AS builder
20+
FROM golang:1.16.6 AS builder
2121

2222
WORKDIR /go/src/k8s.io/release
2323

images/releng/k8s-ci-builder/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ IMAGE = $(REGISTRY)/$(IMGNAME)
2424
TAG ?= $(shell git describe --tags --always --dirty)
2525

2626
# Build args
27-
GO_VERSION ?= 1.16.5
27+
GO_VERSION ?= 1.16.6
2828
BAZEL_VERSION ?= 3.4.1
2929
OLD_BAZEL_VERSION ?= 2.2.0
3030
IMAGE_ARG ?= $(IMAGE):$(TAG)-$(CONFIG)

images/releng/k8s-ci-builder/variants.yaml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
variants:
22
default:
33
CONFIG: default
4-
GO_VERSION: '1.16.5'
4+
GO_VERSION: '1.16.6'
5+
BAZEL_VERSION: '3.4.1'
6+
OLD_BAZEL_VERSION: '2.2.0'
7+
'1.23':
8+
CONFIG: '1.23'
9+
GO_VERSION: '1.17rc1'
10+
BAZEL_VERSION: '3.4.1'
11+
OLD_BAZEL_VERSION: '2.2.0'
12+
'1.22':
13+
CONFIG: '1.22'
14+
GO_VERSION: '1.16.6'
515
BAZEL_VERSION: '3.4.1'
616
OLD_BAZEL_VERSION: '2.2.0'
717
'1.21':
818
CONFIG: '1.21'
9-
GO_VERSION: '1.16.5'
19+
GO_VERSION: '1.16.6'
1020
BAZEL_VERSION: '3.4.1'
1121
OLD_BAZEL_VERSION: '2.2.0'
1222
'1.20':
@@ -19,8 +29,3 @@ variants:
1929
GO_VERSION: '1.15.13'
2030
BAZEL_VERSION: '2.2.0'
2131
OLD_BAZEL_VERSION: '0.23.2'
22-
'1.18':
23-
CONFIG: '1.18'
24-
GO_VERSION: '1.13.15'
25-
BAZEL_VERSION: '2.2.0'
26-
OLD_BAZEL_VERSION: '0.23.2'

0 commit comments

Comments
 (0)