Skip to content

Commit

Permalink
Merge pull request #2630 from cpanato/cloud-builder-go118117
Browse files Browse the repository at this point in the history
k8s-cloud-builder/k8s-ci-builder: build using go1.18.5 and go1.17.13
  • Loading branch information
k8s-ci-robot authored Aug 4, 2022
2 parents 9cc99a0 + ed7b6e7 commit b7b096c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ dependencies:
match: go \d+.\d+

- name: "golang: after kubernetes/kubernetes update"
version: 1.18.4
version: 1.18.5
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 @@ -181,7 +181,7 @@ dependencies:
match: REVISION:\ '\d+'

- name: "k8s.gcr.io/build-image/kube-cross: dependents bullseye"
version: v1.25.0-go1.18.4-bullseye.0
version: v1.25.0-go1.18.5-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-]+)*))?)'"
Expand Down Expand Up @@ -231,7 +231,7 @@ dependencies:
match: "CONFIG: 'go\\d+.\\d+-bullseye'"

- name: "k8s.gcr.io/build-image/kube-cross: dependents (next candidate)"
version: v1.25.0-go1.18.4-bullseye.0
version: v1.25.0-go1.18.5-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-]+)*))?)'"
Expand All @@ -248,7 +248,7 @@ dependencies:
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?

- name: "golang: after kubernetes/kubernetes update (previous release branches: 1.24)"
version: 1.18.4
version: 1.18.5
refPaths:
- path: images/releng/k8s-ci-builder/variants.yaml
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
Expand All @@ -265,13 +265,13 @@ dependencies:
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?

- name: "golang: after kubernetes/kubernetes update (previous release branches: 1.23)"
version: 1.17.12
version: 1.17.13
refPaths:
- path: images/releng/k8s-ci-builder/variants.yaml
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?

# Golang (previous release branches: 1.22, 1.21)
- name: "golang (previous release branches: 1.22, 1.21)"
# Golang (previous release branches: 1.22)
- name: "golang (previous release branches: 1.22)"
version: 1.16.15
refPaths:
- path: images/build/cross/variants.yaml
Expand All @@ -281,7 +281,7 @@ dependencies:
- path: images/releng/ci/variants.yaml
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?

- name: "golang: after kubernetes/kubernetes update (previous release branches: 1.22, 1.21)"
- name: "golang: after kubernetes/kubernetes update (previous release branches: 1.22)"
version: 1.16.15
refPaths:
- path: images/releng/k8s-ci-builder/variants.yaml
Expand Down
6 changes: 3 additions & 3 deletions images/k8s-cloud-builder/variants.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
variants:
v1.25-cross1.18-bullseye:
CONFIG: 'cross1.18'
KUBE_CROSS_VERSION: 'v1.25.0-go1.18.4-bullseye.0'
KUBE_CROSS_VERSION: 'v1.25.0-go1.18.5-bullseye.0'
v1.24-cross1.18-bullseye:
CONFIG: 'cross1.18'
KUBE_CROSS_VERSION: 'v1.24.0-go1.18.4-bullseye.0'
KUBE_CROSS_VERSION: 'v1.24.0-go1.18.5-bullseye.0'
v1.23-cross1.17-bullseye:
CONFIG: 'cross1.17'
KUBE_CROSS_VERSION: 'v1.23.0-go1.17.12-bullseye.0'
KUBE_CROSS_VERSION: 'v1.23.0-go1.17.13-bullseye.0'
v1.22-cross1.16-buster:
CONFIG: 'cross1.16'
KUBE_CROSS_VERSION: 'v1.22.0-go1.16.15-buster.0'
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.18.4-${OS_CODENAME} AS builder
FROM golang:1.18.5-${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.18.4
GO_VERSION ?= 1.18.5
OS_CODENAME ?= bullseye
IMAGE_ARG ?= $(IMAGE):$(TAG)-$(CONFIG)

Expand Down
6 changes: 3 additions & 3 deletions images/releng/k8s-ci-builder/variants.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variants:
default:
CONFIG: default
GO_VERSION: '1.18.4'
GO_VERSION: '1.18.5'
OS_CODENAME: 'bullseye'
next:
CONFIG: next
Expand All @@ -13,11 +13,11 @@ variants:
OS_CODENAME: 'bullseye'
'1.24':
CONFIG: '1.24'
GO_VERSION: '1.18.4'
GO_VERSION: '1.18.5'
OS_CODENAME: 'bullseye'
'1.23':
CONFIG: '1.23'
GO_VERSION: '1.17.12'
GO_VERSION: '1.17.13'
OS_CODENAME: 'bullseye'
'1.22':
CONFIG: '1.22'
Expand Down

0 comments on commit b7b096c

Please sign in to comment.