openstack-helm/cinder/values_overrides/backend_pure.yaml
Huang, Sophie (sh879n) 0a1d6aeb94 [cinder] Enable volume backup for iSCSI based volumes
This patchset added the necessary hostPath, hostIpc and
hostNetwork to enable the volume backup for iSCSI based
Cinder volumes.

Change-Id: Ief3cc723650a6c42e24dfd6159c0de6f81e56fce
2021-01-08 23:38:03 +00:00

35 lines
893 B
YAML

# NOTE: In order for below code to work, package "purestorage"
# needs to be built into Cinder and Nova images.
---
pod:
useHostNetwork:
volume: true
backup: true
security_context:
cinder_volume:
container:
cinder_volume:
readOnlyRootFilesystem: true
privileged: true
cinder_backup:
container:
cinder_backup:
privileged: true
conf:
cinder:
DEFAULT:
enabled_backends: "rbd1,PURE"
backends:
PURE:
pure_eradicate_on_delete: true
volume_backend_name: PURE_BE
# NOTE: Replace below pure-api-token-value with the real token value
pure_api_token: pure-api-token-value
volume_driver: cinder.volume.drivers.pure.PureISCSIDriver
use_multipath_for_image_xfer: true
# NOTE: Replace below 1.1.1.1 with the real ip value
san_ip: 1.1.1.1
enable_iscsi: true
...