NetBackup™ Deployment Guide for Kubernetes Clusters
- Introduction
- Section I. Configurations
- Prerequisites
- Recommendations and Limitations
- Configurations
- Configuration of key parameters in Cloud Scale deployments
- Section II. Deployment
- Section III. Monitoring and Management
- Monitoring NetBackup
- Monitoring Snapshot Manager
- Monitoring MSDP Scaleout
- Managing NetBackup
- Managing the Load Balancer service
- Managing PostrgreSQL DBaaS
- Performing catalog backup and recovery
- Managing MSDP Scaleout
- Section IV. Maintenance
- MSDP Scaleout Maintenance
- PostgreSQL DBaaS Maintenance
- Patching mechanism for Primary and Media servers
- Upgrading
- Cloud Scale Disaster Recovery
- Uninstalling
- Troubleshooting
- Troubleshooting AKS and EKS issues
- Troubleshooting AKS-specific issues
- Troubleshooting EKS-specific issues
- Troubleshooting AKS and EKS issues
- 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>]'