Skip to content

Commit 46b4963

Browse files
committed
Bump Kubernetes to v1.33.0
Signed-off-by: peppi-lotta <[email protected]>
1 parent 34b5824 commit 46b4963

File tree

11 files changed

+23
-23
lines changed

11 files changed

+23
-23
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ help: # Display this help
114114
## --------------------------------------
115115
##@ tests:
116116

117-
export KUBEBUILDER_ENVTEST_KUBERNETES_VERSION ?= 1.32.0
117+
export KUBEBUILDER_ENVTEST_KUBERNETES_VERSION ?= 1.33.0
118118
KUBEBUILDER_ASSETS ?= $(shell $(SETUP_ENVTEST) use --use-env -p path $(KUBEBUILDER_ENVTEST_KUBERNETES_VERSION))
119119

120120
.PHONY: setup-envtest

docs/api.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ spec:
132132
rollingUpdate:
133133
maxSurge: 1
134134
type: RollingUpdate
135-
version: v1.32.0
135+
version: v1.33.0
136136
kubeadmConfigSpec:
137137
joinConfiguration:
138138
controlPlane: {}
@@ -248,7 +248,7 @@ spec:
248248
namespace: metal3
249249
nodeDrainTimeout: 0s
250250
providerID: metal3://68be298f-ed11-439e-9d51-6c5260faede6
251-
version: v1.32.0
251+
version: v1.33.0
252252
```
253253

254254
## Metal3Machine
@@ -418,10 +418,10 @@ metadata:
418418
spec:
419419
automatedCleaningMode: metadata
420420
image:
421-
checksum: http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.32.0-raw.img.sha256sum
421+
checksum: http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.33.0-raw.img.sha256sum
422422
checksumType: sha256
423423
format: raw
424-
url: http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.32.0-raw.img
424+
url: http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.33.0-raw.img
425425
hostSelector:
426426
matchLabels:
427427
key1: value1
@@ -478,7 +478,7 @@ spec:
478478
name: md-0
479479
apiVersion: infrastructure.cluster.x-k8s.io/v1beta1
480480
kind: Metal3MachineTemplate
481-
version: v1.32.0
481+
version: v1.33.0
482482
```
483483

484484
## KubeadmConfigTemplate
@@ -562,10 +562,10 @@ spec:
562562
spec:
563563
automatedCleaningMode: metadata
564564
image:
565-
checksum: http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.32.0-raw.img.sha256sum
565+
checksum: http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.33.0-raw.img.sha256sum
566566
checksumType: sha256
567567
format: raw
568-
url: http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.32.0-raw.img
568+
url: http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.33.0-raw.img
569569
hostSelector:
570570
matchLabels:
571571
key1: value1

docs/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ spec:
404404
etcd: {}
405405
imageRepository: ""
406406
kind: ClusterConfiguration
407-
kubernetesVersion: v1.32.0
407+
kubernetesVersion: v1.33.0
408408
networking:
409409
dnsDomain: cluster.local
410410
podSubnet: 192.168.0.0/18

docs/dev-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ Please note, the precedence of variables is as follows:
287287
},
288288
"metadata": {,
289289
"CONTROL_PLANE_MACHINE_COUNT": "1",
290-
"KUBERNETES_VERSION": "v1.32.0",
290+
"KUBERNETES_VERSION": "v1.33.0",
291291
"WORKER_MACHINE_COUNT": "2",
292292
}
293293
}

docs/e2e-test.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,10 @@ clusters:
199199
<!-- markdownlint-disable MD013 -->
200200

201201
| tests | bootstrap cluster | metal3 cluster init | metal3 cluster final |
202-
| ------------------- | ----------------- | ------------------- | -------------------- |
203-
| integration | v1.32.1 | v1.32.1 | x |
204-
| remediation | v1.32.1 | v1.31.2 | x |
205-
| pivot based feature | v1.32.1 | v1.31.2 | v1.32.1 |
206-
| upgrade | v1.32.1 | v1.31.2 | v1.32.1 |
202+
| ------------------- | ----------------- | -------------------- | -------------------- |
203+
| integration | v1.33.0 | v1.33.0 | x |
204+
| remediation | v1.33.0 | v1.33.0 | x |
205+
| pivot based feature | v1.33.0 | v1.33.0 | v1.33.0 |
206+
| upgrade | v1.33.0 | v1.33.0 | v1.33.0 |
207207

208208
<!-- markdownlint-enable MD013 -->

examples/generate.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ KUSTOMIZE="${SOURCE_DIR}/../hack/tools/bin/kustomize"
2424

2525
# Cluster.
2626
export CLUSTER_NAME="${CLUSTER_NAME:-test1}"
27-
export KUBERNETES_VERSION="${KUBERNETES_VERSION:-v1.32.1}"
27+
export KUBERNETES_VERSION="${KUBERNETES_VERSION:-v1.33.0}"
2828
export CLUSTER_APIENDPOINT_HOST="${CLUSTER_APIENDPOINT_HOST:-192.168.111.249}"
2929
export CLUSTER_APIENDPOINT_PORT="${CLUSTER_APIENDPOINT_PORT:-6443}"
30-
export IMAGE_URL="${IMAGE_URL:-http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.32.1-raw.img}"
31-
export IMAGE_CHECKSUM="${IMAGE_CHECKSUM:-http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.32.1-raw.img.sha256sum}"
30+
export IMAGE_URL="${IMAGE_URL:-http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.33.0-raw.img}"
31+
export IMAGE_CHECKSUM="${IMAGE_CHECKSUM:-http://172.22.0.1/images/UBUNTU_22.04_NODE_IMAGE_K8S_v1.33.0-raw.img.sha256sum}"
3232
export IMAGE_CHECKSUM_TYPE="${IMAGE_CHECKSUM_TYPE:-sha256}"
3333
export IMAGE_FORMAT="${IMAGE_FORMAT:-raw}"
3434

hack/ensure-kubectl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -o nounset
1919
set -o pipefail
2020

2121
GOPATH_BIN="$(go env GOPATH)/bin/"
22-
MINIMUM_KUBECTL_VERSION=${KUBERNETES_VERSION:-"v1.32.1"}
22+
MINIMUM_KUBECTL_VERSION=${KUBERNETES_VERSION:-"v1.33.0"}
2323

2424
# Ensure the kubectl tool exists and is a viable version, or installs it
2525
verify_kubectl_version()

hack/gen_tilt_settings.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ cat <<EOF >tilt-settings.json
6363
{
6464
"capi_version": "${CAPIRELEASE}",
6565
"cert_manager_version": "v1.12.3",
66-
"kubernetes_version": "${KUBERNETES_VERSION:-v1.32.1}"
66+
"kubernetes_version": "${KUBERNETES_VERSION:-v1.33.0}"
6767
}
6868
EOF
6969
fi

scripts/environment.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ else
4949
fi
5050

5151
export FROM_K8S_VERSION=${FROM_K8S_VERSION:-"v1.31.2"}
52-
export KUBERNETES_VERSION=${KUBERNETES_VERSION:-"v1.32.1"}
52+
export KUBERNETES_VERSION=${KUBERNETES_VERSION:-"v1.33.0"}
5353

5454
# Can be overriden from jjbs
5555
export CAPI_VERSION=${CAPI_VERSION:-"v1beta1"}

test/e2e/config/e2e_conf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ providers:
166166

167167
variables:
168168
CNI: "/tmp/calico.yaml"
169-
KUBERNETES_VERSION: "v1.32.1"
169+
KUBERNETES_VERSION: "v1.33.0"
170170
# KUBERNETES_PATCH_FROM_VERSION and KUBERNETES_PATCH_TO_VERSION are used to
171171
# test upgrade scenarios where we only want to upgrade the patch version of
172172
# kubernetes.

0 commit comments

Comments
 (0)