...
Optionally we can delete the namespace as well
Code Block |
---|
kubectl delete |
...
$NAMESPACE |
Install (minimal) CPS
First of all we should craete create a namespace within Kubernetes:
Code Block |
---|
kubectl create namespace onap2$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 upgrade $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 |
Update CPS
Upgrade the installment:
...