Skip to content

Commit 86026aa

Browse files
chore: bump max k8s version to 1.36 (kubernetes-sigs#3079)
1 parent 7593c9c commit 86026aa

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.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 envtest binaries
6-
default: "1.35.x"
6+
default: "1.36.x"
77
runs:
88
using: "composite"
99
steps:

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
inputs:
55
k8s_version:
66
type: string
7-
default: "1.35"
7+
default: "1.36"
88
suite:
99
type: string
1010
required: true

.github/workflows/kind-e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
k8sVersion: ["1.29.x", "1.30.x", "1.31.x", "1.32.x", "1.33.x", "1.34.x", "1.35.x"]
13+
k8sVersion: ["1.30.x", "1.31.x", "1.32.x", "1.33.x", "1.34.x", "1.35.x", "1.36.x"]
1414
uses: ./.github/workflows/e2e.yaml
1515
with:
1616
k8s_version: ${{ matrix.k8sVersion }}

.github/workflows/presubmit.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.29.x", "1.30.x", "1.31.x", "1.32.x", "1.33.x", "1.34.x", "1.35.x"]
17+
k8sVersion: ["1.30.x", "1.31.x", "1.32.x", "1.33.x", "1.34.x", "1.35.x", "1.36.x"]
1818
steps:
1919
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2020
- uses: ./.github/actions/install-deps
@@ -25,7 +25,7 @@ jobs:
2525
- run: K8S_VERSION=${{ matrix.k8sVersion }} make presubmit
2626
- name: Send coverage
2727
# should only send converage once https://docs.coveralls.io/parallel-builds
28-
if: matrix.k8sVersion == '1.35.x'
28+
if: matrix.k8sVersion == '1.36.x'
2929
env:
3030
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131
run: go tool -modfile=go.tools.mod goveralls -coverprofile=coverage.out -service=github

pkg/test/environment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func NewEnvironment(options ...option.Function[EnvironmentOptions]) *Environment
142142
opts := option.Resolve(options...)
143143
ctx, cancel := context.WithCancel(context.Background())
144144

145-
version := version.MustParseSemantic(strings.ReplaceAll(env.WithDefaultString("K8S_VERSION", "1.35.x"), ".x", ".0"))
145+
version := version.MustParseSemantic(strings.ReplaceAll(env.WithDefaultString("K8S_VERSION", "1.36.x"), ".x", ".0"))
146146
environment := envtest.Environment{Scheme: scheme.Scheme, CRDs: opts.crds}
147147
if version.Minor() >= 21 && version.Minor() < 32 {
148148
// PodAffinityNamespaceSelector is used for label selectors in pod affinities. If the feature-gate is turned off,

0 commit comments

Comments
 (0)