diff --git a/package.json b/package.json index 94fabc3b7d..b20a229224 100644 --- a/package.json +++ b/package.json @@ -161,7 +161,7 @@ "test:ts:ci": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test jest --forceExit --maxWorkers=2 --ci", "test:ts-cov": "jest --coverage", "validate-templates": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test binzx/otomi validate-templates", - "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", + "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", "validate-values": "ENV_DIR=$PWD/tests/fixtures NODE_ENV=test binzx/otomi validate-values", "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" }, diff --git a/schemas/api-versions/1.35.txt b/schemas/api-versions/1.35.txt new file mode 100644 index 0000000000..3aa3e2bb03 --- /dev/null +++ b/schemas/api-versions/1.35.txt @@ -0,0 +1,22 @@ +admissionregistration.k8s.io/v1 +apiextensions.k8s.io/v1 +apiregistration.k8s.io/v1 +apps/v1 +authentication.k8s.io/v1 +authorization.k8s.io/v1 +autoscaling/v1 +autoscaling/v2 +batch/v1 +certificates.k8s.io/v1 +coordination.k8s.io/v1 +discovery.k8s.io/v1 +events.k8s.io/v1 +flowcontrol.apiserver.k8s.io/v1 +networking.k8s.io/v1 +node.k8s.io/v1 +policy/v1 +rbac.authorization.k8s.io/v1 +resource.k8s.io/v1 +scheduling.k8s.io/v1 +storage.k8s.io/v1 +v1 diff --git a/schemas/gen-k8s-schemas.sh b/schemas/gen-k8s-schemas.sh index 702bd245c7..75bbc435cf 100755 --- a/schemas/gen-k8s-schemas.sh +++ b/schemas/gen-k8s-schemas.sh @@ -10,6 +10,7 @@ set -ex # X.Y.Z-local - relative references, useful to avoid the network dependency declare -a K8S_VERSIONS=( + v1.35.0 v1.34.0 v1.33.0 v1.32.0 diff --git a/schemas/v1.35-standalone.tar.gz b/schemas/v1.35-standalone.tar.gz new file mode 100644 index 0000000000..72cd308121 Binary files /dev/null and b/schemas/v1.35-standalone.tar.gz differ diff --git a/src/supportedK8sVersions.json b/src/supportedK8sVersions.json index a3d3c6ad9b..10faa3b138 100644 --- a/src/supportedK8sVersions.json +++ b/src/supportedK8sVersions.json @@ -1 +1 @@ -{ "supportedK8sVersions": ["1.29", "1.30", "1.31", "1.32", "1.33", "1.34"] } +{ "supportedK8sVersions": ["1.29", "1.30", "1.31", "1.32", "1.33", "1.34", "1.35"] }