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 fluentbit
- Monitoring MSDP Scaleout
- Managing NetBackup
- Managing the Load Balancer service
- Managing PostrgreSQL DBaaS
- Managing fluentbit
- Performing catalog backup and recovery
- Section IV. Maintenance
- PostgreSQL DBaaS Maintenance
- Patching mechanism for primary, media servers, fluentbit pods, and postgres pods
- 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
- Appendix B. MSDP Scaleout
- MSDP Scaleout configuration
- Managing MSDP Scaleout
- MSDP Scaleout maintenance
Installing the docker images and binaries for MSDP Scaleout
The MSDP package VRTSpddek.tar.gz
for Kubernetes includes the following:
A docker image for MSDP operator
3 docker images for MSDP Scaleout: uss-controller, uss-mds, and uss-engine
A kubectl plugin: kubectl-msdp
Note:
The kubectl plugin is required only when MSDP Scaleout is deployed separately without the environment operator or Helm charts.
For more information, Installing the docker images and binaries for MSDP Scaleout (without environment operators or Helm charts)
To install the docker images and binaries for AKS
- Download
VRTSpddek.tar.gz
from the Veritas site. - Load the docker images to your docker storage.
tar -zxvf VRTSpddek.tar.gz
ls VRTSpddek-*/images/*.tar.gz|xargs -i docker load -i {}
- Push the docker images to the ACR. Keep the image name and version same as original.
docker login <your-acr-url> for image in msdp-operator uss-mds uss-controller uss-engine; do \ docker image tag $image:<version> <your-acr-url>/$image:<version>; \ docker push <your-acr-url>/$image:<version>; \ done
To install the docker images and binaries for EKS
- Download
VRTSpddek.tar.gz
from the Veritas site. - Load the docker images to your docker storage.
tar -zxvf VRTSpddek.tar.gz
ls VRTSpddek-*/images/*.tar.gz|xargs -i docker load -i {}
- Push the docker images to the ECR.
Log in.
aws ecr get-login-password \ --region <region> \ | docker login \ --username AWS \ --password-stdin \ <aws_account_id>.dkr.ecr.<region>.amazonaws.com
Create a repository.
Refer to the "Creating a private repository" section of the AWS documentation.
Push the docker images to ECR. Keep the image name and version same as original.
for image in msdp-operator uss-mds uss-controller uss-engine; do \ docker image tag $image:<version> <your-ecr-url>/$image:<version>; \ docker push <your-ecr-url>/$image:<version>; \ done