NetBackup™ Deployment Guide for Kubernetes Clusters
- Introduction
- Section I. Deployment
- Prerequisites for Kubernetes cluster configuration
- Deployment with environment operators
- Deploying NetBackup
- Primary and media server CR
- Deploying NetBackup using Helm charts
- Deploying MSDP Scaleout
- Deploying Snapshot Manager
- Section II. Monitoring and Management
- Monitoring NetBackup
- Monitoring MSDP Scaleout
- Monitoring Snapshot Manager
- Managing the Load Balancer service
- Managing MSDP Scaleout
- Performing catalog backup and recovery
- Section III. Maintenance
- MSDP Scaleout Maintenance
- Upgrading
- 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>]'