Skip to content

Commit 492b061

Browse files
committed
ci: bump kubernetes to 1.33 and k3s dagger
There was a small mismatch - mostly 1.31 used but e2e tests running on 1.29, 1.33 has just been released. Signed-off-by: Szymon Soloch <[email protected]>
1 parent ed770b7 commit 492b061

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Image URL to use all building/pushing image targets
22
IMG ?= plugin-pgbackrest:latest
33
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
4-
ENVTEST_K8S_VERSION = 1.31.0
4+
ENVTEST_K8S_VERSION = 1.33.0
55

66
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
77
ifeq (,$(shell go env GOBIN))

Taskfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ tasks:
7272
# renovate: datasource=docker depName=golang versioning=semver
7373
GOLANG_IMAGE_VERSION: 1.23.5
7474
# renovate: datasource=git-refs depname=kubernetes packageName=https://github.com/kubernetes/kubernetes versioning=semver
75-
K8S_VERSION: 1.31.0
75+
K8S_VERSION: 1.33.0
7676
# renovate: datasource=git-refs depName=controller-runtime packageName=https://github.com/kubernetes-sigs/controller-runtime versioning=semver
7777
SETUP_ENVTEST_VERSION: 0.19.3
7878
cmds:
@@ -267,7 +267,7 @@ tasks:
267267
# renovate: datasource=docker depName=golang versioning=semver
268268
GOLANG_IMAGE_VERSION: 1.23.5
269269
# renovate: datasource=docker depName=k3s versioning=semver
270-
K3S_IMAGE_VERSION: 1.29.15
270+
K3S_IMAGE_VERSION: 1.33.0
271271
env:
272272
_EXPERIMENTAL_DAGGER_RUNNER_HOST: docker-container://{{ .DAGGER_ENGINE_CONTAINER_NAME }}
273273
cmds:

dagger/gotest/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func New(
4040
setupEnvtestVersion string,
4141
// Kubernetes version
4242
// +optional
43-
// +default="1.31.0"
43+
// +default="1.33.0"
4444
kubeVersion string,
4545
// Container to run the tests
4646
// +optional

internal/controller/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ var _ = BeforeSuite(func() {
7070
// Note that you must have the required binaries setup under the bin directory to perform
7171
// the tests directly. When we run make test it will be setup and used automatically.
7272
BinaryAssetsDirectory: filepath.Join("..", "..", "bin", "k8s",
73-
fmt.Sprintf("1.31.0-%s-%s", runtime.GOOS, runtime.GOARCH)),
73+
fmt.Sprintf("1.33.0-%s-%s", runtime.GOOS, runtime.GOARCH)),
7474
}
7575

7676
var err error

0 commit comments

Comments
 (0)