Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b8899cd
feat: adding k8s v1.35 support
CasLubbers Jan 23, 2026
08dc5cb
Merge branch 'main' into APL-1429
CasLubbers Jan 23, 2026
1ad44cb
Merge branch 'main' into APL-1429
svcAPLBot Jan 26, 2026
06d7148
Merge branch 'main' into APL-1429
svcAPLBot Jan 27, 2026
cbc25f6
Merge branch 'main' into APL-1429
svcAPLBot Jan 27, 2026
d09d39a
Merge branch 'main' into APL-1429
svcAPLBot Jan 27, 2026
ee47d7f
Merge branch 'main' into APL-1429
svcAPLBot Jan 27, 2026
e24195b
Merge branch 'main' into APL-1429
svcAPLBot Jan 28, 2026
f7c8e51
Merge branch 'main' into APL-1429
svcAPLBot Jan 28, 2026
1d5aa5a
Merge branch 'main' into APL-1429
svcAPLBot Jan 28, 2026
417ea2f
Merge branch 'main' into APL-1429
svcAPLBot Jan 28, 2026
ab452d2
Merge branch 'main' into APL-1429
svcAPLBot Jan 28, 2026
cbdb40b
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
d6331de
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
58a7512
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
5cedf0f
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
6743b7c
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
40ff8f0
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
5e9a903
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
2d30de1
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
7585481
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
7eba7ec
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
a47afe9
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
0b39aa0
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
78a25c3
Merge branch 'main' into APL-1429
svcAPLBot Jan 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
22 changes: 22 additions & 0 deletions schemas/api-versions/1.35.txt
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions schemas/gen-k8s-schemas.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file added schemas/v1.35-standalone.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion src/supportedK8sVersions.json
Original file line number Diff line number Diff line change
@@ -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"] }
Loading