Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions docs/modules/hbase/examples/getting_started/getting_started.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,33 +31,33 @@ cd "$(dirname "$0")"

case "$1" in
"helm")
echo "Adding 'stackable-dev' Helm Chart repository"
echo "Adding 'stackable-stable' Helm Chart repository"
# tag::helm-add-repo[]
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
# end::helm-add-repo[]
echo "Updating Helm repo"
helm repo update
echo "Installing Operators with Helm"
# tag::helm-install-operators[]
helm install --wait zookeeper-operator stackable-dev/zookeeper-operator --version 0.0.0-dev &
helm install --wait hdfs-operator stackable-dev/hdfs-operator --version 0.0.0-dev &
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev &
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev &
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev &
helm install --wait hbase-operator stackable-dev/hbase-operator --version 0.0.0-dev &
helm install --wait zookeeper-operator stackable-stable/zookeeper-operator --version 24.11.0 &
helm install --wait hdfs-operator stackable-stable/hdfs-operator --version 24.11.0 &
helm install --wait commons-operator stackable-stable/commons-operator --version 24.11.0 &
helm install --wait secret-operator stackable-stable/secret-operator --version 24.11.0 &
helm install --wait listener-operator stackable-stable/listener-operator --version 24.11.0 &
helm install --wait hbase-operator stackable-stable/hbase-operator --version 24.11.0 &
wait
# end::helm-install-operators[]
;;
"stackablectl")
echo "installing Operators with stackablectl"
# tag::stackablectl-install-operators[]
stackablectl operator install \
commons=0.0.0-dev \
secret=0.0.0-dev \
listener=0.0.0-dev \
zookeeper=0.0.0-dev \
hdfs=0.0.0-dev \
hbase=0.0.0-dev
commons=24.11.0 \
secret=24.11.0 \
listener=24.11.0 \
zookeeper=24.11.0 \
hdfs=24.11.0 \
hbase=24.11.0
# end::stackablectl-install-operators[]
;;
*)
Expand Down
12 changes: 6 additions & 6 deletions docs/modules/hbase/examples/getting_started/install_output.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Installed commons=0.0.0-dev operator
Installed secret=0.0.0-dev operator
Installed listener=0.0.0-dev operator
Installed zookeeper=0.0.0-dev operator
Installed hdfs=0.0.0-dev operator
Installed hbase=0.0.0-dev operator
Installed commons=24.11.0 operator
Installed secret=24.11.0 operator
Installed listener=24.11.0 operator
Installed zookeeper=24.11.0 operator
Installed hdfs=24.11.0 operator
Installed hbase=24.11.0 operator
2 changes: 1 addition & 1 deletion docs/modules/hbase/examples/usage-guide/hbck2-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
spec:
containers:
- name: hbck2
image: docker.stackable.tech/stackable/hbase:2.4.18-stackable0.0.0-dev
image: docker.stackable.tech/stackable/hbase:2.4.18-stackable24.11.0
volumeMounts:
- name: hbase-config
mountPath: /stackable/conf
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
spec:
containers:
- name: hbase
image: docker.stackable.tech/stackable/hbase:2.4.18-stackable0.0.0-dev
image: docker.stackable.tech/stackable/hbase:2.4.18-stackable24.11.0
volumeMounts:
- name: hbase-config
mountPath: /stackable/conf
Expand Down
Loading