Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Checking out use of a kubectl secret in the yaml files via - https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/

Running a Kubernetes Cluster

Details on getting a cluster of hosts running OOM instead of a single large colocated master/host.


Deleting All Containers

Delete all the containers (and services)

Code Block
./deleteAll.bash -n onap


Delete the config-init container and its generated /dockerdata-nfs share

There may be cases where new configuration content needs to be deployed after a pull of a new version of ONAP.

Code Block
# check for the pod
kubectl get pods --all-namespaces -a
# delete the config pod
cd ../config
kubectl --namespace onap delete -f pod-config-init.yaml --all
# delete the fs
rm -rf /dockerdata-nfs/onap
# rerun the config
./createConfig.bash -n onap


Container Endpoint access

...