openstack-helm/cinder/values_overrides/backend_pure.yaml
Andrii Ostapenko 8cfa2aa390 Enable yamllint checks
- brackets
- braces
- colon
- commas
- comments
- document-end
- document-start
- empty-lines
- hyphens
- indentation
- new-line-at-end-of-file
- new-lines
- octal-values
- trailing-spaces

with corresponding code adjustment.

Also add yamllint.conf under the check.

Change-Id: Ie6251c9063c9c99ebe7c6db54c65d45d6ee7a1d4
2020-05-27 19:16:34 -05:00

30 lines
790 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
security_context:
cinder_volume:
container:
cinder_volume:
readOnlyRootFilesystem: true
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
...