Skip to content

Commit 044ad0d

Browse files
committed
getting-started corrections: change to full version and run templating
1 parent d600a3f commit 044ad0d

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

docs/modules/spark-k8s/examples/getting_started/getting_started.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,27 @@ cd "$(dirname "$0")"
1818

1919
case "$1" in
2020
"helm")
21-
echo "Adding 'stackable-dev' Helm Chart repository"
21+
echo "Adding 'stackable-stable' Helm Chart repository"
2222
# tag::helm-add-repo[]
23-
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
23+
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
2424
# end::helm-add-repo[]
2525
echo "Updating Helm repo"
2626
helm repo update
2727

2828
echo "Installing Operators with Helm"
2929
# tag::helm-install-operators[]
30-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
31-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
32-
helm install --wait spark-k8s-operator stackable-dev/spark-k8s-operator --version 0.0.0-dev
30+
helm install --wait commons-operator stackable-stable/commons-operator --version 23.7.0
31+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.7.0
32+
helm install --wait spark-k8s-operator stackable-stable/spark-k8s-operator --version 23.7.0
3333
# end::helm-install-operators[]
3434
;;
3535
"stackablectl")
3636
echo "installing Operators with stackablectl"
3737
# tag::stackablectl-install-operators[]
3838
stackablectl operator install \
39-
commons=0.0.0-dev \
40-
secret=0.0.0-dev \
41-
spark-k8s=0.0.0-dev
39+
commons=23.7.0 \
40+
secret=23.7.0 \
41+
spark-k8s=23.7.0
4242
# end::stackablectl-install-operators[]
4343
;;
4444
*)
@@ -58,7 +58,7 @@ metadata:
5858
namespace: default
5959
spec:
6060
version: "1.0"
61-
sparkImage: docker.stackable.tech/stackable/pyspark-k8s:3.3.0-stackable0.0.0-dev
61+
sparkImage: docker.stackable.tech/stackable/pyspark-k8s:3.3.0-stackable23.7.0
6262
mode: cluster
6363
mainApplicationFile: local:///stackable/spark/examples/src/main/python/pi.py
6464
driver:

docs/modules/spark-k8s/examples/getting_started/getting_started.sh.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ metadata:
5858
namespace: default
5959
spec:
6060
version: "1.0"
61-
sparkImage: docker.stackable.tech/stackable/pyspark-k8s:3.3.0-0.0.0-dev
61+
sparkImage: docker.stackable.tech/stackable/pyspark-k8s:3.3.0-stackable{{ versions.spark }}
6262
mode: cluster
6363
mainApplicationFile: local:///stackable/spark/examples/src/main/python/pi.py
6464
driver:

docs/templating_vars.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ helm:
33
repo_name: stackable-stable
44
repo_url: https://repo.stackable.tech/repository/helm-stable/
55
versions:
6-
commons: "23.7"
7-
secret: "23.7"
8-
spark: "23.7"
6+
commons: "23.7.0"
7+
secret: "23.7.0"
8+
spark: "23.7.0"

0 commit comments

Comments
 (0)