NetBackup™ Deployment Guide for Amazon Elastic Kubernetes Services (EKS) Cluster
- Introduction to NetBackup on EKS
- Deployment with environment operators
- Assessing cluster configuration before deployment
- Deploying NetBackup
- About primary server CR and media server CR
- Upgrading NetBackup
- Deploying Snapshot Manager
- Migration and upgrade of Snapshot Manager
- Deploying MSDP Scaleout
- Upgrading MSDP Scaleout
- Monitoring NetBackup
- Monitoring MSDP Scaleout
- Monitoring Snapshot Manager deployment
- Managing the Load Balancer service
- Performing catalog backup and recovery
- Managing MSDP Scaleout
- About MSDP Scaleout maintenance
- Uninstalling MSDP Scaleout from EKS
- Uninstalling Snapshot Manager
- Troubleshooting
- Appendix A. CR template
Uninstalling Snapshot Manager from EKS
When you uninstall Snapshot Manager from EKS, the Snapshot Manager related services are deleted from the cluster.
Delete cpServer related parameters from
environment.yaml
file and apply it.Following commands can be used to remove and disable the Snapshot Manager from NetBackup:
ENVIRONMENT_NAMESPACE="netbackup-environment" # Make sure the flexsnap-operator pod is running and ready. # Comment out / remove cpServer part from environment.yaml then apply it.
kubectl apply -f environment.yaml -n $ENVIRONMENT_NAMESPACE sleep 10s
Ensure that you get the uninstall message in
flexsnap-operator
operator log.To clean-up cpServer component, delete flexsnap specific persistent volumes (PVs), persistent volume claims (PVCs) and config maps. Note that these resources contain metadata of current cpServer installation and would be deleted.
Use the following respective commands to delete these resources:
To remove
certauth-pvc
,cloudpoint-pvc
andmongodb-pvc
: # kubectl delete pvc certauth-pvc cloudpoint-pvc mongodb-pvc -n <nb-namespace>To remove associated PVs of
certauth-pvc
,cloudpoint-pvc
andmongodb-pvc
: # kubectl delete pv <pv-name> -n <nb-namespace>To remove
nbuconf
andflexsnap-conf
: # kubectl delete cm nbuconf flexsnap-conf -n <nb-namespace>