3dc8d73be9
Utility containers shall act as an interface to an Airship environment and shall enable them to perform routine operational and debugging activities. Utility containers shall enable Operations to seamlessly support Airship environment without exposing secrets and credentials, and at the same time restricting the access to actual containers. The compute-utility container permits access to services running on each compute node. Services include ovs, libvirt, ipmi, perccli, numa and sos. Change-Id: I389b6f62f8abbd665960a2fd4de880f0f5380c2a
19 lines
447 B
Bash
Executable File
19 lines
447 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
#NOTE: Lint and package chart
|
|
: ${OSH_INFRA_PATH:="../../openstack-helm-infra"}
|
|
|
|
make compute-utility
|
|
|
|
helm upgrade --install compute-utility compute-utility --namespace=utility
|
|
|
|
#NOTE: Wait for deploy
|
|
./${OSH_INFRA_PATH}/tools/deployment/common/wait-for-pods.sh utility
|
|
|
|
#NOTE: Validate Deployment info
|
|
kubectl get -n utility jobs
|
|
kubectl get -n utility secrets
|
|
kubectl get -n utility configmaps
|
|
kubectl get -n utility pods
|