Add nfs cinder backup override

Story: 2008613
Task: 41818
Change-Id: I291d973946387a9c7742a2ff84be7b16de3e18da
Signed-off-by: Lucas Cavalcante <lucasmedeiros.cavalcante@windriver.com>
This commit is contained in:
Lucas Cavalcante 2021-02-11 16:09:21 -03:00
parent 0eb93933ff
commit 379f95bc44
3 changed files with 26 additions and 1 deletions

View File

@ -14,7 +14,7 @@ apiVersion: v1
appVersion: v1.0.0 appVersion: v1.0.0
description: OpenStack-Helm Cinder description: OpenStack-Helm Cinder
name: cinder name: cinder
version: 0.1.12 version: 0.1.13
home: https://docs.openstack.org/cinder/latest/ home: https://docs.openstack.org/cinder/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png
sources: sources:

View File

@ -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
...

View File

@ -13,3 +13,4 @@ cinder:
- 0.1.10 Change Issuer to ClusterIssuer - 0.1.10 Change Issuer to ClusterIssuer
- 0.1.11 Update RBAC apiVersion from /v1beta1 to /v1 - 0.1.11 Update RBAC apiVersion from /v1beta1 to /v1
- 0.1.12 Update volume type creation bootstrap logic - 0.1.12 Update volume type creation bootstrap logic
- 0.1.13 Add NFS cinder backup override