
This patchset also reverts nodeselector value for Utility label back to enabled and also adds repective gate jobs to build Xenial Image along with Installation Script and ReadMe file. Change-Id: I4213c121f83dedb96b14c6d101f9ff2a6ae766f3
15 lines
343 B
Bash
Executable File
15 lines
343 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
kubectl label nodes --all openstack-helm-node-class=enabled --overwrite
|
|
#NOTE: Lint and package chart
|
|
|
|
cd charts
|
|
|
|
helm upgrade --install calicoctl-utility ./calicoctl-utility --namespace=utility
|
|
|
|
#NOTE: Validate Deployment info
|
|
kubectl get -n utility secrets
|
|
kubectl get -n utility configmaps
|
|
kubectl get pods -n utility
|