File tree 2 files changed +34
-4
lines changed
docs/modules/hive/examples/getting_started
2 files changed +34
-4
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -euo pipefail
3
3
4
+ # DO NOT EDIT THE SCRIPT
5
+ # Instead, update the j2 template, and regenerate it for dev:
6
+ # cat <<EOF | jinja2 --format yaml getting_started.sh.j2 -o getting_started.sh
7
+ # helm:
8
+ # repo_name: stackable-dev
9
+ # repo_url: https://repo.stackable.tech/repository/helm-dev/
10
+ # versions:
11
+ # commons: 0.0.0-dev
12
+ # hive: 0.0.0-dev
13
+ # listener: 0.0.0-dev
14
+ # secret: 0.0.0-dev
15
+ # minio: 4.0.2
16
+ # postgresql: 12.1.5
17
+ # EOF
18
+
4
19
# The getting started guide script
5
20
# It uses tagged regions which are included in the documentation
6
21
# https://docs.asciidoctor.org/asciidoc/latest/directives/include-tagged-regions/
@@ -39,8 +54,8 @@ helm install --wait hive-operator stackable-dev/hive-operator --version 0.0.0-de
39
54
echo " Install minio for S3"
40
55
# tag::helm-install-minio[]
41
56
helm install minio \
42
- --namespace default \
43
57
--version 4.0.2 \
58
+ --namespace default \
44
59
--set mode=standalone \
45
60
--set replicas=1 \
46
61
--set persistence.enabled=false \
@@ -55,7 +70,7 @@ helm install minio \
55
70
echo " Install postgres for Hive"
56
71
# tag::helm-install-postgres[]
57
72
helm install postgresql \
58
- --version= 12.1.5 \
73
+ --version 12.1.5 \
59
74
--namespace default \
60
75
--set auth.username=hive \
61
76
--set auth.password=hive \
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -euo pipefail
3
3
4
+ # DO NOT EDIT THE SCRIPT
5
+ # Instead, update the j2 template, and regenerate it for dev:
6
+ # cat <<EOF | jinja2 --format yaml getting_started.sh.j2 -o getting_started.sh
7
+ # helm:
8
+ # repo_name: stackable-dev
9
+ # repo_url: https://repo.stackable.tech/repository/helm-dev/
10
+ # versions:
11
+ # commons: 0.0.0-dev
12
+ # hive: 0.0.0-dev
13
+ # listener: 0.0.0-dev
14
+ # secret: 0.0.0-dev
15
+ # minio: 4.0.2
16
+ # postgresql: 12.1.5
17
+ # EOF
18
+
4
19
# The getting started guide script
5
20
# It uses tagged regions which are included in the documentation
6
21
# https://docs.asciidoctor.org/asciidoc/latest/directives/include-tagged-regions/
@@ -39,8 +54,8 @@ helm install --wait hive-operator {{ helm.repo_name }}/hive-operator --version {
39
54
echo " Install minio for S3"
40
55
# tag::helm-install-minio[]
41
56
helm install minio \
57
+ --version {{ versions.minio }} \
42
58
--namespace default \
43
- --version 4.0.2 \
44
59
--set mode=standalone \
45
60
--set replicas=1 \
46
61
--set persistence.enabled=false \
@@ -55,7 +70,7 @@ helm install minio \
55
70
echo " Install postgres for Hive"
56
71
# tag::helm-install-postgres[]
57
72
helm install postgresql \
58
- --version=12.1.5 \
73
+ --version {{ versions.postgresql }} \
59
74
--namespace default \
60
75
--set auth.username=hive \
61
76
--set auth.password=hive \
You can’t perform that action at this time.
0 commit comments