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