Skip to content

Commit 3868a09

Browse files
committed
feat: Support Kubernetes 1.31
1 parent bc3fca1 commit 3868a09

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Integration Tests
1515
strategy:
1616
matrix:
17-
k8s_version: [v1.28, v1.29, v1.30]
17+
k8s_version: [v1.29, v1.30, v1.31]
1818
permissions:
1919
contents: read
2020
uses: kadras-io/github-reusable-workflows/.github/workflows/carvel-package-test-integration.yml@main

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
K8S_VERSION=v1.30
1+
K8S_VERSION=v1.31
22

33
# Build package configuration
44
build: package

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A Carvel package for [CloudNativePG](https://cloudnative-pg.io), a Kubernetes op
1212

1313
### Prerequisites
1414

15-
* Kubernetes 1.28+
15+
* Kubernetes 1.29+
1616
* Carvel [`kctrl`](https://carvel.dev/kapp-controller/docs/latest/install/#installing-kapp-controller-cli-kctrl) CLI.
1717
* Carvel [kapp-controller](https://carvel.dev/kapp-controller) deployed in your Kubernetes cluster. You can install it with Carvel [`kapp`](https://carvel.dev/kapp/docs/latest/install) (recommended choice) or `kubectl`.
1818

test/setup/kind/v1.29/kind-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ kind: Cluster
33
apiVersion: kind.x-k8s.io/v1alpha4
44
nodes:
55
- role: control-plane
6-
image: kindest/node:v1.29.4
6+
image: kindest/node:v1.29.8
77
- role: worker
8-
image: kindest/node:v1.29.4
8+
image: kindest/node:v1.29.8

test/setup/kind/v1.30/kind-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ kind: Cluster
33
apiVersion: kind.x-k8s.io/v1alpha4
44
nodes:
55
- role: control-plane
6-
image: kindest/node:v1.30.2
6+
image: kindest/node:v1.30.4
77
- role: worker
8-
image: kindest/node:v1.30.2
8+
image: kindest/node:v1.30.4

test/setup/kind/v1.28/kind-config.yml renamed to test/setup/kind/v1.31/kind-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ kind: Cluster
33
apiVersion: kind.x-k8s.io/v1alpha4
44
nodes:
55
- role: control-plane
6-
image: kindest/node:v1.28.9
6+
image: kindest/node:v1.31.0
77
- role: worker
8-
image: kindest/node:v1.28.9
8+
image: kindest/node:v1.31.0

0 commit comments

Comments
 (0)