Skip to content

Commit c935f80

Browse files
authored
chore: bump greatest supported k8s version (#8775)
1 parent 4abf673 commit c935f80

File tree

11 files changed

+23
-20
lines changed

11 files changed

+23
-20
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.33"
24+
default: "1.34"
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
description: "Account ID to access AWS"
66
required: true
77
suite:
8-
type: string
8+
description: "Test suite to run"
99
required: true
1010
ecr_account_id:
1111
description: "Account ID to access ECR Repository"
@@ -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.33"
36+
default: "1.34"
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.33"
30+
default: "1.34"
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.33.x"
6+
default: "1.34.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.28.x", "1.29.x", "1.30.x", "1.31.x", "1.32.x", "1.33.x"]
17+
k8sVersion: ["1.28.x", "1.29.x", "1.30.x", "1.31.x", "1.32.x", "1.33.x", "1.34.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.33.x'
26+
if: matrix.k8sVersion == '1.34.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 & 2 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.33"
10+
default: "1.34"
1111
cleanup:
1212
type: boolean
1313
required: true
@@ -40,7 +40,8 @@ on:
4040
- "1.31"
4141
- "1.32"
4242
- "1.33"
43-
default: "1.33"
43+
- "1.34"
44+
default: "1.34"
4445
cleanup:
4546
type: boolean
4647
required: true

.github/workflows/e2e-upgrade.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@ on:
2222
- "1.31"
2323
- "1.32"
2424
- "1.33"
25-
default: "1.33"
25+
- "1.34"
26+
default: "1.34"
2627
cleanup:
2728
required: true
2829
default: true
2930
type: boolean
3031
source:
3132
type: string
32-
default: "aws"
33+
default: "aws"
3334
workflow_call:
3435
inputs:
3536
from_git_ref:
@@ -42,15 +43,15 @@ on:
4243
default: "us-east-2"
4344
k8s_version:
4445
type: string
45-
default: "1.33"
46+
default: "1.34"
4647
cleanup:
4748
required: true
4849
type: boolean
4950
workflow_trigger:
5051
type: string
5152
source:
5253
type: string
53-
default: "aws"
54+
default: "aws"
5455
secrets:
5556
SLACK_WEBHOOK_URL:
5657
required: true

.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.28", "1.29", "1.30", "1.31", "1.32", "1.33"]
37+
k8s_version: ["1.28", "1.29", "1.30", "1.31", "1.32", "1.33", "1.34"]
3838
uses: ./.github/workflows/e2e-matrix.yaml
3939
with:
4040
region: ${{ inputs.region || 'eu-west-1' }}

.github/workflows/e2e.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ on:
3636
- "1.31"
3737
- "1.32"
3838
- "1.33"
39-
default: "1.33"
39+
- "1.34"
40+
default: "1.34"
4041
cluster_name:
4142
type: string
4243
cleanup:
@@ -50,14 +51,14 @@ on:
5051
type: string
5152
source:
5253
type: string
53-
default: "aws"
54+
default: "aws"
5455
workflow_call:
5556
inputs:
5657
git_ref:
5758
type: string
5859
source:
5960
type: string
60-
default: "aws"
61+
default: "aws"
6162
region:
6263
type: string
6364
default: "us-east-2"
@@ -66,7 +67,7 @@ on:
6667
required: true
6768
k8s_version:
6869
type: string
69-
default: "1.33"
70+
default: "1.34"
7071
enable_metrics:
7172
type: boolean
7273
default: false

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aws/karpenter-provider-aws
22

3-
go 1.24.6
3+
go 1.24.11
44

55
require (
66
github.com/Pallinder/go-randomdata v1.2.0

0 commit comments

Comments
 (0)