Skip to content

Commit bcc5b4a

Browse files
Ani1357CasLubbers
andauthored
feat: adding k8s v1.34 support (#2564)
Co-authored-by: CasLubbers <clubbers@akamai.com>
1 parent e53b5c3 commit bcc5b4a

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
@@ -166,7 +166,7 @@
166166
"test:ts:ci": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test jest --forceExit --maxWorkers=2 --ci",
167167
"test:ts-cov": "jest --coverage",
168168
"validate-templates": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test binzx/otomi validate-templates",
169-
"validate-templates:all": "set -e; i=30; while [ $i -le 33 ]; do NODE_ENV=test binzx/otomi validate-templates -k 1.$i; i=$(($i+1)); done",
169+
"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",
170170
"validate-values": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test binzx/otomi validate-values",
171171
"bootstrap-dev": "rm -rf /tmp/otomi-bootstrap-dev; CI=1 VALUES_INPUT=$PWD/tests/bootstrap/input-local-dev.yaml ENV_DIR=/tmp/otomi-bootstrap-dev binzx/otomi bootstrap",
172172
"bootstrap-dev-with-repo": "CI=1 ENV_DIR=/tmp/otomi-bootstrap-dev binzx/otomi bootstrap",

schemas/api-versions/1.34.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.34.0
1314
v1.33.0
1415
v1.32.0
1516
v1.31.1

schemas/v1.34-standalone.tar.gz

6.72 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+
{ "supportedK8sVersions": ["1.29", "1.30", "1.31", "1.32", "1.33", "1.34"] }

0 commit comments

Comments
 (0)