diff --git a/cinder/Chart.yaml b/cinder/Chart.yaml index 1ef776a1bd..33aa5ca853 100644 --- a/cinder/Chart.yaml +++ b/cinder/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Cinder name: cinder -version: 0.1.12 +version: 0.1.13 home: https://docs.openstack.org/cinder/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png sources: diff --git a/cinder/values_overrides/nfs-cinder-backup.yaml b/cinder/values_overrides/nfs-cinder-backup.yaml new file mode 100644 index 0000000000..2c3fa50f64 --- /dev/null +++ b/cinder/values_overrides/nfs-cinder-backup.yaml @@ -0,0 +1,24 @@ +conf: + cinder: + DEFAULT: + backup_driver: cinder.backup.drivers.nfs.NFSBackupDriver + backup_mount_point_base: /backup/openstack/cinder + backup_share: 10.30.1.3:/ +pod: + mounts: + cinder_backup: + cinder_backup: + volumeMounts: + - mountPath: /backup + name: nfs-backup + volumes: + - emptyDir: {} + name: nfs-backup + security_context: + cinder_backup: + container: + cinder_backup: + readOnlyRootFilesystem: false + runAsGroup: 42424 + runAsUser: 42424 +... diff --git a/releasenotes/notes/cinder.yaml b/releasenotes/notes/cinder.yaml index 4a628ab7c0..274f306996 100644 --- a/releasenotes/notes/cinder.yaml +++ b/releasenotes/notes/cinder.yaml @@ -13,3 +13,4 @@ cinder: - 0.1.10 Change Issuer to ClusterIssuer - 0.1.11 Update RBAC apiVersion from /v1beta1 to /v1 - 0.1.12 Update volume type creation bootstrap logic + - 0.1.13 Add NFS cinder backup override