Please enter search query.
Search <book_title>...
NetBackup™ Deployment Guide for Kubernetes Clusters
Last Published:
2023-04-24
Product(s):
NetBackup (10.2)
- 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
Uninstalling NetBackup using Helm charts
To uninstall NetBackup using Helm charts on Kubernetes cluster, perform the following:
- Use the following command to list the NetBackup versions installed:
# helm list
Identify the NetBackup version that needs to be uninstalled.
- Uninstall the identified NetBackup version (release_name) using the following command:
# helm uninstall <release-name>
- The pending global objects cluster roles and role bindings must be cleared up using the following kubectl commands:
# kubectl get storageclass -o name | grep nbux | xargs -r kubectl delete # kubectl get ClusterRoles -o name | grep msdp | xargs -r kubectl delete # kubectl get ClusterRoleBindings -o name | grep msdp | xargs -r kubectl delete # kubectl get crds -o name | grep veritas.com | xargs -r kubectl delete # kubectl get MutatingWebhookConfiguration -o name | grep -E 'msdp|netbackup' | xargs -r kubectl delete # kubectl get ValidatingWebhookConfiguration -o name | grep -E 'msdp|netbackup' | xargs -r kubectl delete