
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
15 lines
446 B
Bash
Executable File
15 lines
446 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
kubectl label nodes --all openstack-helm-node-class=primary --overwrite
|
|
|
|
helm dependency update charts/compute-utility
|
|
cd charts
|
|
kubectl label nodes --all openstack-helm-node-class=primary --overwrite
|
|
helm upgrade --install compute-utility ./compute-utility --namespace=utility
|
|
|
|
#NOTE: Validate Deployment info
|
|
kubectl get -n utility jobs
|
|
kubectl get -n utility configmaps
|
|
kubectl get -n utility pods | grep compute-utility
|