
This fixes Postgres and adds deployment script. Also Fixed different unused links from deployment scripts. Change-Id: I4b6307a805d15eeb062e85c732c14274dc7ca000 Signed-off-by: Sreejith Punnapuzha <sreejith.punnapuzha@outlook.com>
13 lines
327 B
Bash
Executable File
13 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
CURRENT_DIR="$(pwd)"
|
|
cd "${CURRENT_DIR}"/charts
|
|
|
|
kubectl label nodes --all openstack-helm-node-class=primary --overwrite
|
|
|
|
helm upgrade --install postgresql-utility ./postgresql-utility --namespace=utility
|
|
sleep 60
|
|
|
|
#NOTE: Validate Deployment info
|
|
kubectl get pods --all-namespaces | grep postgresql-utility |