@@ -31,27 +31,27 @@ case "$1" in
31
31
" helm" )
32
32
echo " Adding 'stackable-dev' Helm Chart repository"
33
33
# tag::helm-add-repo[]
34
- helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev /
34
+ helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable /
35
35
# end::helm-add-repo[]
36
36
echo " Updating Helm repo"
37
37
helm repo update
38
38
39
39
echo " Installing Operators with Helm"
40
40
# tag::helm-install-operators[]
41
- helm install --wait commons-operator stackable-dev /commons-operator --version 0.0.0-dev
42
- helm install --wait secret-operator stackable-dev /secret-operator --version 0.0.0-dev
43
- helm install --wait listener-operator stackable-dev /listener-operator --version 0.0.0-dev
44
- helm install --wait zookeeper-operator stackable-dev /zookeeper-operator --version 0.0.0-dev
41
+ helm install --wait commons-operator stackable-stable /commons-operator --version 24.11.0
42
+ helm install --wait secret-operator stackable-stable /secret-operator --version 24.11.0
43
+ helm install --wait listener-operator stackable-stable /listener-operator --version 24.11.0
44
+ helm install --wait zookeeper-operator stackable-stable /zookeeper-operator --version 24.11.0
45
45
# end::helm-install-operators[]
46
46
;;
47
47
" stackablectl" )
48
48
echo " installing Operators with stackablectl"
49
49
# tag::stackablectl-install-operators[]
50
50
stackablectl operator install \
51
- commons=0.0.0-dev \
52
- secret=0.0.0-dev \
53
- listener=0.0.0-dev \
54
- zookeeper=0.0.0-dev
51
+ commons=24.11.0 \
52
+ secret=24.11.0 \
53
+ listener=24.11.0 \
54
+ zookeeper=24.11.0
55
55
# end::stackablectl-install-operators[]
56
56
;;
57
57
* )
@@ -80,7 +80,7 @@ zkCli_ls() {
80
80
# tag::zkcli-ls[]
81
81
kubectl run my-pod \
82
82
--stdin --tty --quiet --restart=Never \
83
- --image docker.stackable.tech/stackable/zookeeper:3.9.2-stackable0.0.0-dev -- \
83
+ --image docker.stackable.tech/stackable/zookeeper:3.9.2-stackable24.11.0 -- \
84
84
bin/zkCli.sh -server simple-zk-server-default:2282 ls / > /dev/null && \
85
85
kubectl logs my-pod && \
86
86
kubectl delete pods my-pod
0 commit comments