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
Wrong EFS ID is provided in environment.yaml file
Following error message is displayed when wrong EFS ID is provided in
environment.yaml
file:
"samples/environment.yaml": admission webhook "environment2-validating-webhook.netbackup.veritas.com" denied the request: Environment change rejected by validating webhook: EFS ID provided for Catalog storage is not matching with EFS ID of already created persistent volume for Primary servers Catalog volume. Old EFS ID fs-0bf084568203f1c27 : New EFS ID fs-0bf084568203f1c29
Above error can appear due to the following reasons:
During upgrade, if EFS ID provided is different from the EFS ID used in the previous version deployment.
During fresh deployment, if user manually creates PV and PVC with EFS ID and provides different EFS ID in
environment.yaml
file.
To resolve this issue, perform the following:
- Identify the correct EFS ID used for PV and PVC.
Previously used EFS ID can be retrieved from PV and PVC by using the following steps:
kubectl get pvc -n <namespace>
From the output, copy the name of catalog PVC which is of the following format:
catalog-<resource name prefix>-primary-0
Describe catalog PVC using the following command:
kubectl describe pvc <pvc name> -n <namespace>
Note down the value of Volume field from the output.
Describe PV using the following command:
kubectl describe pv <value of Volume obtained from above step>
Note down the value of VolumeHandle field from the output. This is the EFS ID used previously.
- Provide correct EFS ID in the
environment.yaml
file and apply theenvironment.yaml
using the following command:kubectl apply -f environment.yaml