@@ -31,27 +31,27 @@ case "$1" in
3131" helm" )
3232echo " Adding 'stackable-dev' Helm Chart repository"
3333# 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 /
3535# end::helm-add-repo[]
3636echo " Updating Helm repo"
3737helm repo update
3838
3939echo " Installing Operators with Helm"
4040# 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
4545# end::helm-install-operators[]
4646;;
4747" stackablectl" )
4848echo " installing Operators with stackablectl"
4949# tag::stackablectl-install-operators[]
5050stackablectl 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
5555# end::stackablectl-install-operators[]
5656;;
5757* )
@@ -80,7 +80,7 @@ zkCli_ls() {
8080# tag::zkcli-ls[]
8181kubectl run my-pod \
8282 --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 -- \
8484 bin/zkCli.sh -server simple-zk-server-default:2282 ls / > /dev/null && \
8585 kubectl logs my-pod && \
8686 kubectl delete pods my-pod
0 commit comments