Skip to content

Commit 9b1e19c

Browse files
merllj-zimnowodaCasLubbers
authored
feat: add support for Kubernetes 1.32 (#1894)
Co-authored-by: Jehoszafat Zimnowoda <[email protected]> Co-authored-by: CasLubbers <[email protected]>
1 parent 80ebd93 commit 9b1e19c

File tree

5 files changed

+24
-2
lines changed

5 files changed

+24
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
"test:ts": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test jest",
157157
"test:ts-cov": "jest --coverage",
158158
"validate-templates": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test binzx/otomi validate-templates",
159-
"validate-templates:all": "set -e; i=28; while [ $i -le 31 ]; do NODE_ENV=test binzx/otomi validate-templates -k 1.$i; i=$(($i+1)); done",
159+
"validate-templates:all": "set -e; i=29; while [ $i -le 32 ]; do NODE_ENV=test binzx/otomi validate-templates -k 1.$i; i=$(($i+1)); done",
160160
"validate-values": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test binzx/otomi validate-values",
161161
"bootstrap-dev": "rm -rf /tmp/otomi-bootstrap-dev; CI=1 VALUES_INPUT=$PWD/tests/bootstrap/input.yaml ENV_DIR=/tmp/otomi-bootstrap-dev binzx/otomi bootstrap",
162162
"bootstrap-dev-with-repo": "CI=1 ENV_DIR=/tmp/otomi-bootstrap-dev binzx/otomi bootstrap"

schemas/api-versions/1.32.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
admissionregistration.k8s.io/v1
2+
apiextensions.k8s.io/v1
3+
apiregistration.k8s.io/v1
4+
apps/v1
5+
authentication.k8s.io/v1
6+
authorization.k8s.io/v1
7+
autoscaling/v1
8+
autoscaling/v2
9+
batch/v1
10+
certificates.k8s.io/v1
11+
coordination.k8s.io/v1
12+
discovery.k8s.io/v1
13+
events.k8s.io/v1
14+
flowcontrol.apiserver.k8s.io/v1
15+
networking.k8s.io/v1
16+
node.k8s.io/v1
17+
policy/v1
18+
rbac.authorization.k8s.io/v1
19+
scheduling.k8s.io/v1
20+
storage.k8s.io/v1
21+
v1

schemas/gen-k8s-schemas.sh

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ set -ex
1010
# X.Y.Z-local - relative references, useful to avoid the network dependency
1111

1212
declare -a K8S_VERSIONS=(
13+
v1.32.0
1314
v1.31.1
1415
v1.30.2
1516
v1.29.4

schemas/v1.32-standalone.tar.gz

5.79 MB
Binary file not shown.

src/supportedK8sVersions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "supportedK8sVersions": ["1.29", "1.30", "1.31"] }
1+
{ "supportedK8sVersions": ["1.29", "1.30", "1.31", "1.32"] }

0 commit comments

Comments
 (0)