...
Code Block |
---|
kubectl delete $NAMESPACE |
Install (minimal) CPS
First of all we should create a namespace within Kubernetes:
Code Block |
---|
kubectl create namespace $NAMESPACE |
Add Xerces Helm repository:
Code Block |
---|
helm repo add xerces http://172.16.3.229/local |
(note: the IP address might change. This value worked for us, but if it's not reachable contact Andrew Fenner)
Install the chart with the following command:
Code Block |
---|
helm upgradeinstall $ONAP_INSTALL_RELEASE_NAME xerces/onap -i -f values.yaml -f $ONAP_INSTALL_VALUES_YAML --namespace $ONAP_INSTALL_NAMESPACE --set global.masterPassword=$ONAP_INSTALL_MASTER_PASSWORD --debug |
The value of $ONAP_INSTALL_VALUES_YAML must be a relative path from the oom/kubernetes/onap/Chart.yaml to the configuration YAML file that we place under the overrides folder (eg ./resources/overrides/cps-minimal.yaml ).
Update CPS
Upgrade the installment:
...