porthole/tools/deployment/utilities/005-calicoctl-utility.sh
diwakar thyagaraj 29f8b0a363 Change Node-selector to openstack-control-plane for All UC's
1. Changing nodeselector to use same label and to sync
     (openstack-control-plane = enabled) which comes default
     with osh deployment.

 2. Fix Ceph Deploy script.

 3. Updated Apparmor script to remove node-selector.

 4. Remove repos cloned  not needed for Porthole Project.

Change-Id: Ibb4c98a956347c8487beff90277fe9a88bed9739
Signed-off-by: diwakar thyagaraj <diwakar.chitoor.thyagaraj@att.com>
2020-06-03 20:23:16 +00:00

16 lines
487 B
Bash
Executable File

#!/bin/bash
set -xe
namespace=utility
helm dependency update charts/calicoctl-utility
helm upgrade --install calicoctl-utility ./charts/calicoctl-utility --namespace=$namespace
# Wait for Deployment
: "${OSH_INFRA_PATH:="../openstack-helm-infra"}"
cd "${OSH_INFRA_PATH}"
./tools/deployment/common/wait-for-pods.sh $namespace
#NOTE: Validate Deployment info
kubectl get -n $namespace secrets
kubectl get -n $namespace configmaps
kubectl get pods -n $namespace | grep calicoctl-utility