
Added helm dependecy update instead of directory logging and using MAKE functionality. This way script supports local deployments. Change-Id: I40b916f21a11945f4e065983e863922c3f537bbf Signed-off-by: diwakar thyagaraj <diwakar.chitoor.thyagaraj@att.com>
13 lines
355 B
Bash
Executable File
13 lines
355 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
kubectl label nodes --all openstack-helm-node-class=primary --overwrite
|
|
|
|
helm dependency update charts/calicoctl-utility
|
|
cd charts
|
|
helm upgrade --install etcdctl-utility ./etcdctl-utility --namespace=utility
|
|
|
|
#NOTE: Validate Deployment info
|
|
kubectl get -n utility secrets
|
|
kubectl get -n utility configmaps
|
|
kubectl get pods -n utility
|