The Kubernetes resources for MSDP Scaleout and MSDP operator
Do not change or delete the Kubernetes resources that MSDP deployment has created.
Run the following command to find all the namespaced resources:
kubectl api-resources --verbs=list --namespaced=true -o name | xargs -n 1 -i bash -c 'if ! echo {} |grep -q events; then kubectl get --show-kind --show-labels --ignore-not-found -n <cr or operator namespace> {}; fi'
Run the following command to find commonly used namespace resources:
kubectl get pod,svc,deploy,rs,pvc -n <cr or operator namespace> -o wide
Run the following command to find the Kubernetes cluster level resources that belong to the CR:
kubectl api-resources --verbs=list --namespaced=false -o name | xargs -n 1 -i bash -c 'kubectl get --show-kind --show-labels --ignore-not-found {} |grep [msdp-operator|<cr-name>]'