Skip to content

Commit 158fb42

Browse files
Adjust supported k8s version to 1.33
1 parent febd054 commit 158fb42

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

bundle/manifests/windows-machine-config-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ spec:
526526
527527
name: Red Hat, Windows Container Support for OpenShift
528528
maturity: stable
529-
minKubeVersion: 1.32.0
529+
minKubeVersion: 1.33.0
530530
provider:
531531
name: Red Hat
532532
version: 10.20.0

config/manifests/bases/windows-machine-config-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ spec:
176176
177177
name: Red Hat, Windows Container Support for OpenShift
178178
maturity: stable
179-
minKubeVersion: 1.32.0
179+
minKubeVersion: 1.33.0
180180
provider:
181181
name: Red Hat
182182
version: 0.0.0

pkg/cluster/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const (
2424
ovnKubernetesNetwork = "OVNKubernetes"
2525
// baseK8sVersion specifies the base k8s version supported by the operator. (For eg. All versions in the format
2626
// 1.20.x are supported for baseK8sVersion 1.20)
27-
baseK8sVersion = "v1.32"
27+
baseK8sVersion = "v1.33"
2828
// MachineAPINamespace is the name of the namespace in which machine objects and userData secret is created.
2929
MachineAPINamespace = "openshift-machine-api"
3030
)

pkg/cluster/config_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ func TestIsValidKubernetesVersion(t *testing.T) {
125125
error bool
126126
}{
127127
{"cluster version lower than supported version ", "v1.17.1", true},
128-
{"cluster version equals supported version", "v1.32.0", false},
128+
{"cluster version equals supported version", "v1.33.0", false},
129129
{"cluster version equals supported version", "v1.33.4", false},
130-
{"cluster version greater than supported version ", "v1.34.2", true},
130+
{"cluster version greater than supported version ", "v1.35.2", true},
131131
}
132132

133133
for _, tt := range tests {

0 commit comments

Comments
 (0)