
Enhanced Postgresql UC to deploy in OSH instead of relaying for AIAB for testing.Added Calico UC to Readme File,and fixed Deployment Scripts. Change-Id: I726e2dc975a82f773c0a7d69c4e60511fa0da05d
12 lines
331 B
Bash
Executable File
12 lines
331 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
kubectl label nodes --all openstack-helm-node-class=primary --overwrite
|
|
helm dependency update charts/postgresql-utility
|
|
cd charts
|
|
helm upgrade --install postgresql-utility ./postgresql-utility --namespace=utility
|
|
sleep 60
|
|
|
|
#NOTE: Validate Deployment info
|
|
kubectl get pods -n utility | grep postgresql-utility
|