ef4044b62f
cinder_csi_rescan_on_resize
28 lines
1.5 KiB
YAML
28 lines
1.5 KiB
YAML
---
|
|
# To access Cinder, the CSI controller will need credentials to access
|
|
# openstack apis. Per default this values will be
|
|
# read from the environment.
|
|
cinder_auth_url: "{{ lookup('env','OS_AUTH_URL') }}"
|
|
cinder_username: "{{ lookup('env','OS_USERNAME') }}"
|
|
cinder_password: "{{ lookup('env','OS_PASSWORD') }}"
|
|
cinder_application_credential_id: "{{ lookup('env','OS_APPLICATION_CREDENTIAL_ID') }}"
|
|
cinder_application_credential_name: "{{ lookup('env','OS_APPLICATION_CREDENTIAL_NAME') }}"
|
|
cinder_application_credential_secret: "{{ lookup('env','OS_APPLICATION_CREDENTIAL_SECRET') }}"
|
|
cinder_region: "{{ lookup('env','OS_REGION_NAME') }}"
|
|
cinder_tenant_id: "{{ lookup('env','OS_TENANT_ID')| default(lookup('env','OS_PROJECT_ID'),true) }}"
|
|
cinder_tenant_name: "{{ lookup('env','OS_TENANT_NAME')| default(lookup('env','OS_PROJECT_NAME'),true) }}"
|
|
cinder_domain_name: "{{ lookup('env','OS_USER_DOMAIN_NAME') }}"
|
|
cinder_domain_id: "{{ lookup('env','OS_USER_DOMAIN_ID') }}"
|
|
cinder_cacert: "{{ lookup('env','OS_CACERT') }}"
|
|
|
|
# For now, only Cinder v3 is supported in Cinder CSI driver
|
|
cinder_blockstorage_version: "v3"
|
|
cinder_csi_controller_replicas: 1
|
|
|
|
# Optional. Set to true, to rescan block device and verify its size before expanding
|
|
# the filesystem.
|
|
# Not all hypervizors have a /sys/class/block/XXX/device/rescan location, therefore if
|
|
# you enable this option and your hypervizor doesn't support this, you'll get a warning
|
|
# log on resize event. It is recommended to disable this option in this case.
|
|
# Defaults to false
|
|
# cinder_csi_rescan_on_resize: true
|