Skip to content

Commit 7af94dc

Browse files
committed
update the kops discovery store and update the go version to 1.24.13
1 parent 15a5262 commit 7af94dc

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

.github/workflows/deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
- id: govulncheck
2323
uses: golang/govulncheck-action@v1
2424
with:
25-
go-version-input: 1.24.4
25+
go-version-input: 1.24.13
2626
go-version-file: go.mod
2727
- id: govulncheck-tests-e2e
2828
uses: golang/govulncheck-action@v1
2929
with:
30-
go-version-input: 1.24.4
30+
go-version-input: 1.24.13
3131
go-version-file: tests/e2e/go.mod

.ko.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
defaultBaseImage: registry.k8s.io/build-image/go-runner:v2.4.0-go1.24.9-bookworm.0
1+
defaultBaseImage: registry.k8s.io/build-image/go-runner:v2.4.0-go1.24.13-bookworm.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
## BUILD ARGS ##
1515
################################################################################
1616
# This build arg allows the specification of a custom Golang image.
17-
ARG GOLANG_IMAGE=golang:1.24.9
17+
ARG GOLANG_IMAGE=golang:1.24.13
1818

1919
# The distroless image on which the CPI manager image is built.
2020
#
2121
# Please do not use "latest". Explicit tags should be used to provide
2222
# deterministic builds. Follow what kubernetes uses to build
2323
# kube-controller-manager, for example for 1.23.x:
2424
# https://github.com/kubernetes/kubernetes/blob/release-1.24/build/common.sh#L94
25-
ARG DISTROLESS_IMAGE=registry.k8s.io/build-image/go-runner:v2.4.0-go1.24.9-bookworm.0
25+
ARG DISTROLESS_IMAGE=registry.k8s.io/build-image/go-runner:v2.4.0-go1.24.13-bookworm.0
2626

2727
################################################################################
2828
## BUILD STAGE ##

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ test-e2e-latest-k8s: switch-to-latest-k8s e2e.test ko-build-local install-e2e-to
170170
BUILD_IMAGE=$(IMAGE) \
171171
BUILD_VERSION=$(VERSION) \
172172
INSTALL_PATH=$(INSTALL_PATH) \
173+
KOPS_DISCOVERY_STORE=s3://cloud-provider-aws-shared-e2e \
173174
GINKGO_FOCUS="\[cloud-provider-aws-e2e\]" \
174175
./hack/e2e/run.sh
175176

@@ -180,6 +181,7 @@ test-e2e: e2e.test docker-build-amd64 install-e2e-tools
180181
BUILD_IMAGE=$(IMAGE) \
181182
BUILD_VERSION=$(VERSION) \
182183
INSTALL_PATH=$(INSTALL_PATH) \
184+
KOPS_DISCOVERY_STORE=s3://cloud-provider-aws-shared-e2e \
183185
GINKGO_FOCUS="\[cloud-provider-aws-e2e\]" \
184186
./hack/e2e/run.sh
185187

cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ steps:
1717
- --platform=linux/amd64,linux/arm64
1818
- .
1919
# Build cloudbuild artifacts (for attestation)
20-
- name: 'docker.io/library/golang:1.24.9-bookworm'
20+
- name: 'docker.io/library/golang:1.24.13-bookworm'
2121
id: cloudbuild-artifacts
2222
entrypoint: make
2323
env:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module k8s.io/cloud-provider-aws
22

3-
go 1.24.9
3+
go 1.24.13
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.36.5

tests/e2e/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module k8s.io/cloud-provider-aws/tests/e2e
22

3-
go 1.24.9
3+
go 1.24.13
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.9.4

0 commit comments

Comments
 (0)