Skip to content

Commit d01fb6d

Browse files
authored
Merge pull request #1660 from mythi/PR-2024-001
Go 1.22 + version updates
2 parents eea3990 + 06dc494 commit d01fb6d

33 files changed

+426
-309
lines changed

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ helm install --wait \
3434
cert-manager jetstack/cert-manager \
3535
--namespace cert-manager \
3636
--create-namespace \
37-
--version v1.13.3 \
37+
--version v1.14.2 \
3838
--set installCRDs=true
3939
```
4040

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ BUILDTAGS ?= ""
88
BUILDER ?= "docker"
99
EXTRA_BUILD_ARGS ?= ""
1010

11-
CERT_MANAGER_VERSION ?= v1.13.2
12-
CONTROLLER_GEN_VERSION ?= v0.13.0
11+
CERT_MANAGER_VERSION ?= v1.14.2
12+
CONTROLLER_GEN_VERSION ?= v0.14.0
1313
GOLANGCI_LINT_VERSION ?= v1.55.2
14-
KIND_VERSION ?= v0.20.0
14+
KIND_VERSION ?= v0.21.0
1515
GOLICENSES_VERSION ?= v1.6.0
1616
# Default bundle image tag
1717
BUNDLE_IMG ?= intel-device-plugins-controller-bundle:$(TAG)
@@ -173,7 +173,7 @@ e2e-dlb:
173173

174174
pre-pull:
175175
ifeq ($(TAG),devel)
176-
@$(BUILDER) pull golang:1.21-bookworm
176+
@$(BUILDER) pull golang:1.22-bookworm
177177
@$(BUILDER) pull debian:unstable-slim
178178
@$(BUILDER) pull ubuntu:22.04
179179
endif

build/docker/intel-deviceplugin-operator.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ARG FINAL_BASE=registry.access.redhat.com/ubi9-micro:latest
3434
##
3535
## This is used on release branches before tagging a stable version.
3636
## The main branch defaults to using the latest Golang base image.
37-
ARG GOLANG_BASE=golang:1.21-bookworm
37+
ARG GOLANG_BASE=golang:1.22-bookworm
3838
###
3939
FROM ${GOLANG_BASE} as builder
4040
ARG DIR=/intel-device-plugins-for-kubernetes

build/docker/intel-dlb-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ARG FINAL_BASE=registry.access.redhat.com/ubi9-micro:latest
3333
##
3434
## This is used on release branches before tagging a stable version.
3535
## The main branch defaults to using the latest Golang base image.
36-
ARG GOLANG_BASE=golang:1.21-bookworm
36+
ARG GOLANG_BASE=golang:1.22-bookworm
3737
###
3838
FROM ${GOLANG_BASE} as builder
3939
ARG DIR=/intel-device-plugins-for-kubernetes

build/docker/intel-dlb-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ARG FINAL_BASE=registry.access.redhat.com/ubi9-micro:latest
3434
##
3535
## This is used on release branches before tagging a stable version.
3636
## The main branch defaults to using the latest Golang base image.
37-
ARG GOLANG_BASE=golang:1.21-bookworm
37+
ARG GOLANG_BASE=golang:1.22-bookworm
3838
###
3939
FROM ${GOLANG_BASE} as builder
4040
ARG DIR=/intel-device-plugins-for-kubernetes

build/docker/intel-dsa-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ARG FINAL_BASE=registry.access.redhat.com/ubi9-micro:latest
3434
##
3535
## This is used on release branches before tagging a stable version.
3636
## The main branch defaults to using the latest Golang base image.
37-
ARG GOLANG_BASE=golang:1.21-bookworm
37+
ARG GOLANG_BASE=golang:1.22-bookworm
3838
###
3939
FROM ${GOLANG_BASE} as builder
4040
ARG DIR=/intel-device-plugins-for-kubernetes

build/docker/intel-fpga-admissionwebhook.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ARG FINAL_BASE=registry.access.redhat.com/ubi9-micro:latest
3434
##
3535
## This is used on release branches before tagging a stable version.
3636
## The main branch defaults to using the latest Golang base image.
37-
ARG GOLANG_BASE=golang:1.21-bookworm
37+
ARG GOLANG_BASE=golang:1.22-bookworm
3838
###
3939
FROM ${GOLANG_BASE} as builder
4040
ARG DIR=/intel-device-plugins-for-kubernetes

build/docker/intel-fpga-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ARG FINAL_BASE=registry.access.redhat.com/ubi9-micro:latest
3333
##
3434
## This is used on release branches before tagging a stable version.
3535
## The main branch defaults to using the latest Golang base image.
36-
ARG GOLANG_BASE=golang:1.21-bookworm
36+
ARG GOLANG_BASE=golang:1.22-bookworm
3737
###
3838
FROM ${GOLANG_BASE} as builder
3939
ARG DIR=/intel-device-plugins-for-kubernetes

build/docker/intel-fpga-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ARG FINAL_BASE=registry.access.redhat.com/ubi9-micro:latest
3434
##
3535
## This is used on release branches before tagging a stable version.
3636
## The main branch defaults to using the latest Golang base image.
37-
ARG GOLANG_BASE=golang:1.21-bookworm
37+
ARG GOLANG_BASE=golang:1.22-bookworm
3838
###
3939
FROM ${GOLANG_BASE} as builder
4040
ARG DIR=/intel-device-plugins-for-kubernetes

build/docker/intel-gpu-fakedev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ARG FINAL_BASE=registry.access.redhat.com/ubi9-micro:latest
3434
##
3535
## This is used on release branches before tagging a stable version.
3636
## The main branch defaults to using the latest Golang base image.
37-
ARG GOLANG_BASE=golang:1.21-bookworm
37+
ARG GOLANG_BASE=golang:1.22-bookworm
3838
###
3939
FROM ${GOLANG_BASE} as builder
4040
ARG DIR=/intel-device-plugins-for-kubernetes

0 commit comments

Comments
 (0)