Skip to content

Commit 620efeb

Browse files
committed
feat: Support Kubernetes 1.33
1 parent cc5fa3b commit 620efeb

File tree

7 files changed

+15
-36
lines changed

7 files changed

+15
-36
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.30, v1.31, v1.32]
17+
k8s_version: [v1.31, v1.32, v1.33]
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.32
1+
K8S_VERSION=v1.33
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 [Dependency Track](https://dependency-track.io), a continuo
1212

1313
### Prerequisites
1414

15-
* Kubernetes 1.30+
15+
* Kubernetes 1.31+
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.30/kind-config.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

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

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,6 @@ kind: Cluster
33
apiVersion: kind.x-k8s.io/v1alpha4
44
nodes:
55
- role: control-plane
6-
image: kindest/node:v1.31.6
6+
image: kindest/node:v1.31.9
77
- role: worker
8-
image: kindest/node:v1.31.6
9-
extraPortMappings:
10-
- containerPort: 80
11-
hostPort: 80
12-
listenAddress: "0.0.0.0"
13-
- containerPort: 443
14-
hostPort: 443
15-
listenAddress: "0.0.0.0"
8+
image: kindest/node:v1.31.9

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

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,6 @@ kind: Cluster
33
apiVersion: kind.x-k8s.io/v1alpha4
44
nodes:
55
- role: control-plane
6-
image: kindest/node:v1.32.3
6+
image: kindest/node:v1.32.5
77
- role: worker
8-
image: kindest/node:v1.32.3
9-
extraPortMappings:
10-
- containerPort: 80
11-
hostPort: 80
12-
listenAddress: "0.0.0.0"
13-
- containerPort: 443
14-
hostPort: 443
15-
listenAddress: "0.0.0.0"
8+
image: kindest/node:v1.32.5
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
kind: Cluster
3+
apiVersion: kind.x-k8s.io/v1alpha4
4+
nodes:
5+
- role: control-plane
6+
image: kindest/node:v1.33.1
7+
- role: worker
8+
image: kindest/node:v1.33.1

0 commit comments

Comments
 (0)