Remote storage for Tungsten Fabric database backups¶
Available since MOSK 23.2 TechPreview
MOSK supports configuring a remote NFS storage for TF data backups through the TF Operator custom resource:
API v2 Available since MOSK 24.1 spec: features: dbBackup: enabled: true backupType: "pv_nfs" nfsOptions: path: <PATH_TO_SHARE_FOLDER_ON_SERVER> server: <IP_ADDRESS/DNS_NAME_OF_SERVER>API v1alpha1 Deprecated since MOSK 24.2 spec: controllers: tf-dbBackup: enabled: true backupType: "pv_nfs" nfsOptions: path: <PATH_TO_SHARE_FOLDER_ON_SERVER> server: <IP_ADDRESS/DNS_NAME_OF_SERVER>
If PVC backups were used previously, the old PVC will not be utilized. You can delete it with the following command:
kubectl -n tf delete pvc <TF_DB_BACKUP_PVC>