mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-23 13:41:26 +00:00
small changes for setup scripts
Signed-off-by: jason yang <jasonyangshadow@gmail.com>
This commit is contained in:
parent
64031c35c8
commit
b4ad28bd38
@ -49,11 +49,11 @@ export SQL_PORT=$POSTGRES_PORT
|
|||||||
export SQL_USER=postgres
|
export SQL_USER=postgres
|
||||||
export SQL_PASSWORD=postgres
|
export SQL_PASSWORD=postgres
|
||||||
|
|
||||||
./temporal-sql-tool create-database -database temporal
|
./temporal-sql-tool -database temporal create-database
|
||||||
SQL_DATABASE=temporal ./temporal-sql-tool setup-schema -v 0.0
|
SQL_DATABASE=temporal ./temporal-sql-tool setup-schema -v 0.0
|
||||||
SQL_DATABASE=temporal ./temporal-sql-tool update -schema-dir schema/postgresql/v96/temporal/versioned
|
SQL_DATABASE=temporal ./temporal-sql-tool update -schema-dir schema/postgresql/v96/temporal/versioned
|
||||||
|
|
||||||
./temporal-sql-tool create-database -database temporal_visibility
|
./temporal-sql-tool -database temporal_visibility create-database
|
||||||
SQL_DATABASE=temporal_visibility ./temporal-sql-tool setup-schema -v 0.0
|
SQL_DATABASE=temporal_visibility ./temporal-sql-tool setup-schema -v 0.0
|
||||||
SQL_DATABASE=temporal_visibility ./temporal-sql-tool update -schema-dir schema/postgresql/v96/visibility/versioned
|
SQL_DATABASE=temporal_visibility ./temporal-sql-tool update -schema-dir schema/postgresql/v96/visibility/versioned
|
||||||
|
|
||||||
|
@ -45,8 +45,7 @@ helm repo add bitnami https://charts.bitnami.com/bitnami
|
|||||||
# and places a PersisentVolumeClaim for this.
|
# and places a PersisentVolumeClaim for this.
|
||||||
# Ensure that the cluster provides PersistentVolumes:
|
# Ensure that the cluster provides PersistentVolumes:
|
||||||
|
|
||||||
if kubectl get PersistentVolume -o json
|
if kubectl get PersistentVolume -o json | jq -e '.items | .[].status | select(.phase == "Bound")' ; then
|
||||||
| jq -e '.items | .[].status | select(.phase == "Bound")' ; then
|
|
||||||
echo "Ok found at least one PersistentVolume"
|
echo "Ok found at least one PersistentVolume"
|
||||||
else
|
else
|
||||||
echo "The postgresql helm chart has a PersistentVolumeClaim (PVC)."
|
echo "The postgresql helm chart has a PersistentVolumeClaim (PVC)."
|
||||||
@ -81,4 +80,4 @@ helm upgrade --install localstack localstack-repo/localstack
|
|||||||
helm install --set auth.rootUser=AKIAIOSFODNN7EXAMPLE,auth.rootPassword=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY minio bitnami/minio
|
helm install --set auth.rootUser=AKIAIOSFODNN7EXAMPLE,auth.rootPassword=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY minio bitnami/minio
|
||||||
|
|
||||||
# Install Temporal
|
# Install Temporal
|
||||||
helm install temporal infrastructure/dev-helm/temporal --timeout 15m -f infrastructure/dev-helm/temporal.values.yaml
|
helm install --dependency-update temporal infrastructure/dev-helm/temporal --timeout 15m -f infrastructure/dev-helm/temporal.values.yaml
|
||||||
|
Loading…
Reference in New Issue
Block a user