17 lines
No EOL
874 B
YAML
17 lines
No EOL
874 B
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_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 |