Skip to content

Commit 15912b7

Browse files
committed
test: Support k8s 1.30
Signed-off-by: Thomas Vitale <[email protected]>
1 parent 7481682 commit 15912b7

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
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.27, v1.28, v1.29]
17+
k8s_version: [v1.28, v1.29, v1.30]
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.29
1+
K8S_VERSION=v1.30
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 provisioning and configuring workspaces (namespaces or virt
1212

1313
### Prerequisites
1414

15-
* Kubernetes 1.27+
15+
* Kubernetes 1.28+
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/integration/kuttl-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ commands:
1717
- script: |
1818
kubectl config set-context --current --namespace=tests && \
1919
kapp deploy -a secretgen-controller-package -y \
20-
-f https://github.com/kadras-io/package-for-secretgen-controller/releases/download/v0.17.0/package.yml \
21-
-f https://github.com/kadras-io/package-for-secretgen-controller/releases/download/v0.17.0/metadata.yml
20+
-f https://github.com/kadras-io/package-for-secretgen-controller/releases/download/v0.18.0/package.yml \
21+
-f https://github.com/kadras-io/package-for-secretgen-controller/releases/download/v0.18.0/metadata.yml
2222
- script: |
2323
kubectl config set-context --current --namespace=tests && \
2424
kapp deploy -a dependencies -y -f ./test/setup/dependencies

test/setup/dependencies/secretgen-controller.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ spec:
1212
packageRef:
1313
refName: secretgen-controller.packages.kadras.io
1414
versionSelection:
15-
constraints: 0.17.0
15+
constraints: 0.18.0

test/setup/kind/v1.28/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.7
6+
image: kindest/node:v1.28.9
77
- role: worker
8-
image: kindest/node:v1.28.7
8+
image: kindest/node:v1.28.9

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.2
6+
image: kindest/node:v1.29.4
77
- role: worker
8-
image: kindest/node:v1.29.2
8+
image: kindest/node:v1.29.4

test/setup/kind/v1.27/kind-config.yml renamed to 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.27.11
6+
image: kindest/node:v1.30.0
77
- role: worker
8-
image: kindest/node:v1.27.11
8+
image: kindest/node:v1.30.0

0 commit comments

Comments
 (0)