@@ -35,30 +35,30 @@ cd "$(dirname "$0")"
35
35
36
36
case " $1 " in
37
37
" helm" )
38
- echo " Adding 'stackable-dev ' Helm Chart repository"
38
+ echo " Adding 'stackable-stable ' Helm Chart repository"
39
39
# tag::helm-add-repo[]
40
- helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev /
40
+ helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable /
41
41
# end::helm-add-repo[]
42
42
echo " Updating Helm repositories"
43
43
helm repo update
44
44
echo " Installing Operators with Helm"
45
45
# tag::helm-install-operators[]
46
- helm install --wait commons-operator stackable-dev /commons-operator --version 0.0.0-dev
47
- helm install --wait secret-operator stackable-dev /secret-operator --version 0.0.0-dev
48
- helm install --wait listener-operator stackable-dev /listener-operator --version 0.0.0-dev
49
- helm install --wait zookeeper-operator stackable-dev /zookeeper-operator --version 0.0.0-dev
50
- helm install --wait kafka-operator stackable-dev /kafka-operator --version 0.0.0-dev
46
+ helm install --wait commons-operator stackable-stable /commons-operator --version 24.11.0
47
+ helm install --wait secret-operator stackable-stable /secret-operator --version 24.11.0
48
+ helm install --wait listener-operator stackable-stable /listener-operator --version 24.11.0
49
+ helm install --wait zookeeper-operator stackable-stable /zookeeper-operator --version 24.11.0
50
+ helm install --wait kafka-operator stackable-stable /kafka-operator --version 24.11.0
51
51
# end::helm-install-operators[]
52
52
;;
53
53
" stackablectl" )
54
54
echo " installing Operators with stackablectl"
55
55
# tag::stackablectl-install-operators[]
56
56
stackablectl operator install \
57
- commons=0.0.0-dev \
58
- secret=0.0.0-dev \
59
- listener=0.0.0-dev \
60
- zookeeper=0.0.0-dev \
61
- kafka=0.0.0-dev
57
+ commons=24.11.0 \
58
+ secret=24.11.0 \
59
+ listener=24.11.0 \
60
+ zookeeper=24.11.0 \
61
+ kafka=24.11.0
62
62
# end::stackablectl-install-operators[]
63
63
;;
64
64
* )
0 commit comments