Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

k8s-cloud-builder/k8s-ci-builder: build using Go 1.17.7 #2428

Merged
merged 1 commit into from
Feb 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 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.17.6
version: 1.17.7
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.24.0-go1.17.6-bullseye.0
version: v1.24.0-go1.17.7-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
2 changes: 1 addition & 1 deletion images/k8s-cloud-builder/variants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variants:
KUBE_CROSS_VERSION: 'v1.24.0-go1.18beta1-bullseye.0'
v1.24-cross1.17-bullseye:
CONFIG: 'cross1.17'
KUBE_CROSS_VERSION: 'v1.24.0-go1.17.6-bullseye.0'
KUBE_CROSS_VERSION: 'v1.24.0-go1.17.7-bullseye.0'
v1.23-cross1.17-bullseye:
CONFIG: 'cross1.17'
KUBE_CROSS_VERSION: 'v1.23.0-go1.17.6-bullseye.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.6-${OS_CODENAME} AS builder
FROM golang:1.17.7-${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.6
GO_VERSION ?= 1.17.7
OS_CODENAME ?= bullseye
IMAGE_ARG ?= $(IMAGE):$(TAG)-$(CONFIG)

Expand Down
2 changes: 1 addition & 1 deletion 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.17.6'
GO_VERSION: '1.17.7'
OS_CODENAME: 'bullseye'
next:
CONFIG: next
Expand Down