Skip to content

chore(docs): Update getting-started script pre-25.3.0 #580

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 14, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
38 changes: 19 additions & 19 deletions docs/modules/hive/examples/getting_started/getting_started.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,29 +42,29 @@ helm install --wait hive-operator stackable-dev/hive-operator --version 0.0.0-de
echo "Install minio for S3"
# tag::helm-install-minio[]
helm install minio \
--version 4.0.2 \
--namespace default \
--set mode=standalone \
--set replicas=1 \
--set persistence.enabled=false \
--set "buckets[0].name=hive,buckets[0].policy=none" \
--set "users[0].accessKey=hive,users[0].secretKey=hivehive,users[0].policy=readwrite" \
--set resources.requests.memory=1Gi \
--set service.type=NodePort,service.nodePort=null \
--set consoleService.type=NodePort,consoleService.nodePort=null \
--repo https://charts.min.io/ minio
--version 5.4.0 \
--namespace default \
--set mode=standalone \
--set replicas=1 \
--set persistence.enabled=false \
--set buckets[0].name=hive,buckets[0].policy=none \
--set users[0].accessKey=hive,users[0].secretKey=hivehive,users[0].policy=readwrite \
--set resources.requests.memory=1Gi \
--set service.type=NodePort,service.nodePort=null \
--set consoleService.type=NodePort,consoleService.nodePort=null \
--repo https://charts.min.io/ minio
# end::helm-install-minio[]

echo "Install postgres for Hive"
# tag::helm-install-postgres[]
helm install postgresql \
--version 12.1.5 \
--namespace default \
--set auth.username=hive \
--set auth.password=hive \
--set auth.database=hive \
--set primary.extendedConfiguration="password_encryption=md5" \
--repo https://charts.bitnami.com/bitnami postgresql
helm install postgresql oci://registry-1.docker.io/bitnamicharts/postgresql \
--version 16.5.0 \
--namespace default \
--set auth.username=hive \
--set auth.password=hive \
--set auth.database=hive \
--set primary.extendedConfiguration="password_encryption=md5" \
--wait
# end::helm-install-postgres[]
;;
"stackablectl")
Expand Down
38 changes: 19 additions & 19 deletions docs/modules/hive/examples/getting_started/getting_started.sh.j2
Original file line number Diff line number Diff line change
Expand Up @@ -42,29 +42,29 @@ helm install --wait hive-operator {{ helm.repo_name }}/hive-operator --version {
echo "Install minio for S3"
# tag::helm-install-minio[]
helm install minio \
--version {{ versions.minio }} \
--namespace default \
--set mode=standalone \
--set replicas=1 \
--set persistence.enabled=false \
--set buckets[0].name=hive,buckets[0].policy=none \
--set users[0].accessKey=hive,users[0].secretKey=hivehive,users[0].policy=readwrite \
--set resources.requests.memory=1Gi \
--set service.type=NodePort,service.nodePort=null \
--set consoleService.type=NodePort,consoleService.nodePort=null \
--repo https://charts.min.io/ minio
--version {{ versions.minio }} \
--namespace default \
--set mode=standalone \
--set replicas=1 \
--set persistence.enabled=false \
--set buckets[0].name=hive,buckets[0].policy=none \
--set users[0].accessKey=hive,users[0].secretKey=hivehive,users[0].policy=readwrite \
--set resources.requests.memory=1Gi \
--set service.type=NodePort,service.nodePort=null \
--set consoleService.type=NodePort,consoleService.nodePort=null \
--repo https://charts.min.io/ minio
# end::helm-install-minio[]

echo "Install postgres for Hive"
# tag::helm-install-postgres[]
helm install postgresql \
--version {{ versions.postgresql }} \
--namespace default \
--set auth.username=hive \
--set auth.password=hive \
--set auth.database=hive \
--set primary.extendedConfiguration="password_encryption=md5" \
--repo https://charts.bitnami.com/bitnami postgresql
helm install postgresql oci://registry-1.docker.io/bitnamicharts/postgresql \
--version {{ versions.postgresql }} \
--namespace default \
--set auth.username=hive \
--set auth.password=hive \
--set auth.database=hive \
--set primary.extendedConfiguration="password_encryption=md5" \
--wait
# end::helm-install-postgres[]
;;
"stackablectl")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: minio
repo:
name: minio
url: https://charts.min.io/
version: 4.0.2
version: 5.4.0
options:
rootUser: root
rootPassword: rootroot
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: postgresql
repo:
name: bitnami
url: https://charts.bitnami.com/bitnami/
version: 12.1.5
version: 16.5.0
options:
volumePermissions:
enabled: false
Expand Down
4 changes: 2 additions & 2 deletions docs/templating_vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ versions:
secret: 0.0.0-dev
listener: 0.0.0-dev
hive: 0.0.0-dev
minio: 4.0.2
postgresql: 12.1.5
minio: 5.4.0
postgresql: 16.5.0