NetBackup™ Deployment Guide for Azure Kubernetes Services (AKS) Cluster
- Introduction to NetBackup on AKS
- Deployment with environment operators
- Assessing cluster configuration before deployment
- Deploying NetBackup
- About primary server CR and media server CR
- Upgrading NetBackup
- Deploying MSDP Scaleout
- Upgrading MSDP Scaleout
- Monitoring NetBackup
- Monitoring MSDP Scaleout
- Managing the Load Balancer service
- Performing catalog backup and recovery
- Managing MSDP Scaleout
- About MSDP Scaleout maintenance
- Uninstalling MSDP Scaleout from AKS
- Troubleshooting
- Appendix A. CR template
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>]'