Skip to content

Commit 93980e9

Browse files
feat: adding k8s v1.35 support (#2862)
Co-authored-by: svcAPLBot <[email protected]>
1 parent 96dcfe5 commit 93980e9

File tree

5 files changed

+25
-2
lines changed

5 files changed

+25
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
"test:ts:ci": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test jest --forceExit --maxWorkers=2 --ci",
162162
"test:ts-cov": "jest --coverage",
163163
"validate-templates": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test binzx/otomi validate-templates",
164-
"validate-templates:all": "set -e; i=31; while [ $i -le 34 ]; do NODE_ENV=test binzx/otomi validate-templates -k 1.$i; i=$(($i+1)); done",
164+
"validate-templates:all": "set -e; i=32; while [ $i -le 35 ]; do NODE_ENV=test binzx/otomi validate-templates -k 1.$i; i=$(($i+1)); done",
165165
"validate-values": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test binzx/otomi validate-values",
166166
"bootstrap-dev": "rm -rf /tmp/otomi-bootstrap-dev; VALUES_INPUT=$PWD/tests/bootstrap/input-local-dev.yaml ENV_DIR=/tmp/otomi-bootstrap-dev binzx/otomi bootstrap"
167167
},

schemas/api-versions/1.35.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
resource.k8s.io/v1
20+
scheduling.k8s.io/v1
21+
storage.k8s.io/v1
22+
v1

schemas/gen-k8s-schemas.sh

Lines changed: 1 addition & 0 deletions
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.35.0
1314
v1.34.0
1415
v1.33.0
1516
v1.32.0

schemas/v1.35-standalone.tar.gz

6.77 MB
Binary file not shown.

src/supportedK8sVersions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "supportedK8sVersions": ["1.29", "1.30", "1.31", "1.32", "1.33", "1.34"] }
1+
{ "supportedK8sVersions": ["1.29", "1.30", "1.31", "1.32", "1.33", "1.34", "1.35"] }

0 commit comments

Comments
 (0)