File tree 6 files changed +30
-8
lines changed
6 files changed +30
-8
lines changed Original file line number Diff line number Diff line change 48
48
description : ' Kubernetes version'
49
49
type : choice
50
50
options :
51
- - " ['1.30']"
52
51
- " ['1.31']"
53
52
- " ['1.32']"
54
- default : " ['1.32']"
53
+ - " ['1.33']"
54
+ default : " ['1.33']"
55
55
install_profile :
56
56
description : APL installation profile
57
57
default : minimal-with-team
Original file line number Diff line number Diff line change 160
160
"test:ts" : " ENV_DIR=$PWD/tests/fixtures NODE_ENV=test jest" ,
161
161
"test:ts-cov" : " jest --coverage" ,
162
162
"validate-templates" : " ENV_DIR=$PWD/tests/fixtures NODE_ENV=test binzx/otomi validate-templates" ,
163
- "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" ,
163
+ "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" ,
164
164
"validate-values" : " ENV_DIR=$PWD/tests/fixtures NODE_ENV=test binzx/otomi validate-values" ,
165
165
"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" ,
166
166
"bootstrap-dev-with-repo" : " CI=1 ENV_DIR=/tmp/otomi-bootstrap-dev binzx/otomi bootstrap" ,
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ set -ex
10
10
# X.Y.Z-local - relative references, useful to avoid the network dependency
11
11
12
12
declare -a K8S_VERSIONS=(
13
+ v1.33.0
13
14
v1.32.0
14
15
v1.31.1
15
16
v1.30.2
Original file line number Diff line number Diff line change @@ -4,21 +4,21 @@ FROM ubuntu:20.04 AS builder
4
4
ARG DEBIAN_FRONTEND=noninteractive
5
5
ARG TARGETARCH
6
6
# https://github.com/kubernetes/kubernetes/releases
7
- ARG KUBECTL_VERSION=1.31.1
7
+ ARG KUBECTL_VERSION=1.33.0
8
8
# https://github.com/helm/helm/tags
9
- ARG HELM_VERSION=3.16.2
9
+ ARG HELM_VERSION=3.17.0
10
10
# https://github.com/databus23/helm-diff/releases
11
- ARG HELM_DIFF_VERSION=3.9.11
11
+ ARG HELM_DIFF_VERSION=3.11.0
12
12
# https://github.com/jkroepke/helm-secrets/releases
13
- ARG HELM_SECRETS_VERSION=4.6.2
13
+ ARG HELM_SECRETS_VERSION=4.6.3
14
14
# https://github.com/mozilla/sops/releases
15
15
ARG SOPS_VERSION=3.9.1
16
16
# https://github.com/FiloSottile/age/releases
17
17
ARG AGE_VERSION=1.2.0
18
18
# https://github.com/noqcks/gucci/releases
19
19
ARG GUCCI_VERSION=1.6.13
20
20
# https://github.com/helmfile/helmfile/releases
21
- ARG HELMFILE_VERSION=0.168 .0
21
+ ARG HELMFILE_VERSION=0.171 .0
22
22
# https://nodejs.org/en/download/
23
23
ARG NODE_VERSION=20
24
24
You can’t perform that action at this time.
0 commit comments