
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
494 B
Bash
Executable File
15 lines
494 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
kubectl label nodes --all openstack-helm-node-class=primary --overwrite
|
|
helm dependency update charts/openstack-utility
|
|
cd charts
|
|
helm upgrade --install openstack-utility ./openstack-utility --namespace=utility
|
|
|
|
#NOTE: Validate Deployment info
|
|
kubectl get pods -n utility | grep openstack-utility
|
|
helm status openstack-utility
|
|
export OS_CLOUD=openstack_helm
|
|
sleep 30 #NOTE(portdirect): Wait for ingress controller to update rules and restart Nginx
|
|
openstack endpoint list
|