Skip to content

Commit 8be1880

Browse files
Include K8s version 1.33 in docs and testing
1 parent 3fc0697 commit 8be1880

File tree

37 files changed

+210
-203
lines changed

37 files changed

+210
-203
lines changed

.github/actions/e2e/install-karpenter/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ inputs:
2121
required: true
2222
k8s_version:
2323
description: 'Version of Kubernetes to use for the launched cluster'
24-
default: "1.32"
24+
default: "1.33"
2525
git_ref:
2626
description: "The git commit, tag, or branch to check out. Requires a corresponding Karpenter snapshot release"
2727
private_cluster:

.github/actions/e2e/run-tests-private-cluster/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ inputs:
3333
required: true
3434
k8s_version:
3535
description: 'Version of Kubernetes to use for the launched cluster'
36-
default: "1.32"
36+
default: "1.33"
3737
private_cluster:
3838
description: "Whether to create a private cluster which does not add access to the public internet. Valid values are 'true' or 'false'"
3939
default: 'false'

.github/actions/e2e/setup-cluster/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ inputs:
2727
required: true
2828
k8s_version:
2929
description: 'Version of Kubernetes to use for the launched cluster'
30-
default: "1.32"
30+
default: "1.33"
3131
eksctl_version:
3232
description: "Version of eksctl to install"
3333
default: v0.202.0

.github/actions/install-deps/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: 'Installs Go Downloads and installs Karpenter Dependencies'
33
inputs:
44
k8sVersion:
55
description: Kubernetes version to use when installing the toolchain
6-
default: "1.32.x"
6+
default: "1.33.x"
77
use-cache:
88
description: 'Whether to cache dependencies'
99
default: true

.github/workflows/ci-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
k8sVersion: ["1.26.x", "1.27.x", "1.28.x", "1.29.x", "1.30.x", "1.31.x", "1.32.x"]
17+
k8sVersion: ["1.28.x", "1.29.x", "1.30.x", "1.31.x", "1.32.x", "1.33.x"]
1818
steps:
1919
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2020
- uses: ./.github/actions/install-deps
@@ -23,7 +23,7 @@ jobs:
2323
- run: K8S_VERSION=${{ matrix.k8sVersion }} make ci-test
2424
- name: Send coverage
2525
# should only send converage once https://docs.coveralls.io/parallel-builds
26-
if: matrix.k8sVersion == '1.32.x'
26+
if: matrix.k8sVersion == '1.33.x'
2727
env:
2828
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
run: goveralls -coverprofile=coverage.out -service=github

.github/workflows/e2e-matrix.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
default: "us-east-2"
88
k8s_version:
99
type: string
10-
default: "1.32"
10+
default: "1.33"
1111
cleanup:
1212
type: boolean
1313
required: true
@@ -34,14 +34,13 @@ on:
3434
k8s_version:
3535
type: choice
3636
options:
37-
- "1.26"
38-
- "1.27"
3937
- "1.28"
4038
- "1.29"
4139
- "1.30"
4240
- "1.31"
4341
- "1.32"
44-
default: "1.32"
42+
- "1.33"
43+
default: "1.33"
4544
cleanup:
4645
type: boolean
4746
required: true

.github/workflows/e2e-upgrade.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ on:
1616
k8s_version:
1717
type: choice
1818
options:
19-
- "1.26"
20-
- "1.27"
2119
- "1.28"
2220
- "1.29"
2321
- "1.30"
2422
- "1.31"
2523
- "1.32"
26-
default: "1.32"
24+
- "1.33"
25+
default: "1.33"
2726
cleanup:
2827
required: true
2928
default: true
@@ -43,7 +42,7 @@ on:
4342
default: "us-east-2"
4443
k8s_version:
4544
type: string
46-
default: "1.32"
45+
default: "1.33"
4746
cleanup:
4847
required: true
4948
type: boolean

.github/workflows/e2e-version-compatibility-trigger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
k8s_version: ["1.26", "1.27", "1.28", "1.29", "1.30", "1.31", "1.32"]
37+
k8s_version: ["1.28", "1.29", "1.30", "1.31", "1.32", "1.33"]
3838
uses: ./.github/workflows/e2e-matrix.yaml
3939
with:
4040
region: ${{ inputs.region || 'eu-west-1' }}

.github/workflows/e2e.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,13 @@ on:
3030
k8s_version:
3131
type: choice
3232
options:
33-
- "1.26"
34-
- "1.27"
3533
- "1.28"
3634
- "1.29"
3735
- "1.30"
3836
- "1.31"
3937
- "1.32"
40-
default: "1.32"
38+
- "1.33"
39+
default: "1.33"
4140
cluster_name:
4241
type: string
4342
cleanup:
@@ -67,7 +66,7 @@ on:
6766
required: true
6867
k8s_version:
6968
type: string
70-
default: "1.32"
69+
default: "1.33"
7170
enable_metrics:
7271
type: boolean
7372
default: false

charts/karpenter-crd/templates/karpenter.k8s.aws_ec2nodeclasses.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
{{- with .Values.additionalAnnotations }}
77
{{- toYaml . | nindent 4 }}
88
{{- end }}
9-
controller-gen.kubebuilder.io/version: v0.18.0
9+
controller-gen.kubebuilder.io/version: v0.19.0
1010
name: ec2nodeclasses.karpenter.k8s.aws
1111
spec:
1212
group: karpenter.k8s.aws

0 commit comments

Comments
 (0)