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
- Managing MSDP Scaleout
- Section IV. Maintenance
- MSDP Scaleout 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
Steps to deploy Cloud Scale in single node
To deploy the Cloud Scale Technology on a single node in the Kubernetes cluster, perform the following steps:
Deploy operators: To deploy operators, perform points mentioned in step 1.
Deploy fluentbit: To deploy fluentbit, perform points mentioned in step 2.
Deploy postgresql: To deploy postgresql, perform points mentioned in step 3.
Deploy environment: To perform settings in the environment, check for points mentioned in step 4.
Steps for deployment
- In the
operators-values.yaml file
, do the following changes:Set 'replicas' to 1 in
msdp-operator
.Set value to
examplepool
for everynode_selector_value
in the nodeSelector section.Set value to
agentpool
for everynode_selector_key
in the nodeSelector section.To deploy the operators, refer to the section See Deploying the operators.
- In the
fluentbit
, do the following:Set value to
examplepool
fornode_selector_value
in the collectorNodeSelector section.To deploy fluentbit, refer to the section See Deploying fluentbit for logging strategy.
- In the postgresql, do the following:
Set value to examplepool for value in the nodeSelector section.
To deploy PostgreSQL database, refer to the section See Deploying Postgres.
- Do the following in the environment to deploy the Cloud Scale Technology:
Set value to examplepool for every node_selector_value and labelValue in the nodeSelector section.
Set value to "agentpool" for every
node_selector_key
andlabelKey
in the nodeSelector section.Set 'replicas' to 1 for
mediaServers
andmsdpScaleouts
section.Add the section in the
msdpScaleouts
section:
resources: requests: cpu: 6000m memory: 16384Mi limits: cpu: 9000m memory: 16384Mi
# save environment chart values to a file helm show values environment-10.5.tgz > environment-values.yaml # edit chart values to fit your environment vi environment-values.yaml # generate environment.yaml helm template environment-10.5.tgz -f environment-values.yaml > environment.yaml # apply environment.yaml kubectl apply -n netbackup -f environment.yaml