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 MSDP Scaleout
- Managing NetBackup
- Managing the Load Balancer service
- Managing PostrgreSQL DBaaS
- Performing catalog backup and recovery
- Managing MSDP Scaleout
- Section IV. Maintenance
- MSDP Scaleout Maintenance
- PostgreSQL DBaaS Maintenance
- Patching mechanism for Primary and Media servers
- 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
Configuring zone redundancy
This section describes configuring zone redundancy using the zone redundant storage for disk-based and file-based storage.
Azure-disk based storage
Zone-redundant storage (ZRS) synchronously replicates an Azure managed disk across three Azure availability zones in the regions selected. This can be selected by setting
in theyaml
file for creating the storage class.ZRS disks are currently available in: Southeast Asia, Australia East, Brazil South, North Europe, West Europe, France Central, Japan East, Korea Central, Qatar Central, UK South, East US, East US 2, South Central US and West US 2.
The following
yaml
file can be used:aks-disk kind: StorageClass apiVersion: storage.k8s.io/v1 metadata: name: <storage class name> provisioner: disk.csi.azure.com reclaimPolicy: Retain allowVolumeExpansion: True volumeBindingMode: Immediate parameters: skuname: Premium_ZRS
EKS disk-based storage (EBS)
Zone redundancy not supported. The snapshot backup to store backup at different S3 bucket can be used.
Refer to the following document to take volume snapshot and restore it to the existing pod:
Using Amazon EBS snapshots for persistent storage with your Amazon EKS cluster by leveraging add-ons
Azure file-based storage
Zone-redundant storage (ZRS) replicates the storage account synchronously across three Azure availability zones in the primary region. This can be selected by setting
in theyaml
file for creating the storage class.ZRS for premium file shares is available in: Southeast Asia, Australia East, Brazil South, North Europe, West Europe, France Central, Japan East, Korea Central, Qatar Central, UK South, East US, East US 2, South Central US and West US 2.
The following
yaml
file can be used:aks-file kind: StorageClass apiVersion: storage.k8s.io/v1 metadata: name: <name of storage class> provisioner: file.csi.azure.com reclaimPolicy: Retain allowVolumeExpansion: True volumeBindingMode: Immediate parameters: skuName: Premium_ZRS protocol: nfs
EKS file-based storage (EFS)
Zone redundancy is automatically supported within the region.
For more information, see Resilience in Amazon Elastic File System.