Please enter search query.
Search <book_title>...
NetBackup™ Deployment Guide for Azure Kubernetes Services (AKS) Cluster
Last Published:
2022-06-27
Product(s):
NetBackup & Alta Data Protection (10.0.0.1)
- Introduction to NetBackup on AKS
- Deployment with environment operators
- Assessing cluster configuration before deployment
- Deploying NetBackup
- About primary server CR and media server CR
- Upgrading NetBackup
- Deploying MSDP Scaleout
- Upgrading MSDP Scaleout
- Monitoring NetBackup
- Monitoring MSDP Scaleout
- Managing the Load Balancer service
- Performing catalog backup and recovery
- Managing MSDP Scaleout
- About MSDP Scaleout maintenance
- Uninstalling MSDP Scaleout from AKS
- Troubleshooting
- Appendix A. CR template
Installing the docker images and binaries
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
To install the docker images and binaries
- 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 {}
- Copy MSDP kubectl plugin to a directory from where you access AKS host. This directory can be configured in the PATH environment variable so that kubectl can load kubectl-msdp as a plugin automatically.
For example,
cp ./VRTSpddek-*/bin/kubectl-msdp /usr/local/bin/
- Push the docker images to the ACR.
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