
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>
16 lines
487 B
Bash
Executable File
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 |