27 lines
No EOL
978 B
Django/Jinja
27 lines
No EOL
978 B
Django/Jinja
[Global]
|
|
auth-url="{{ cinder_auth_url }}"
|
|
username="{{ cinder_username }}"
|
|
password="{{ cinder_password }}"
|
|
region="{{ cinder_region }}"
|
|
{% if cinder_tenant_id is defined and cinder_tenant_id != "" %}
|
|
tenant-id="{{ cinder_tenant_id }}"
|
|
{% endif %}
|
|
{% if cinder_tenant_name is defined and cinder_tenant_name != "" %}
|
|
tenant-name="{{ cinder_tenant_name }}"
|
|
{% endif %}
|
|
{% if cinder_domain_name is defined and cinder_domain_name != "" %}
|
|
domain-name="{{ cinder_domain_name }}"
|
|
{% elif cinder_domain_id is defined and cinder_domain_id != "" %}
|
|
domain-id ="{{ cinder_domain_id }}"
|
|
{% endif %}
|
|
{% if cinder_cacert is defined and cinder_cacert != "" %}
|
|
ca-file="{{ kube_config_dir }}/cinder-cacert.pem"
|
|
{% endif %}
|
|
|
|
[BlockStorage]
|
|
{% if cinder_blockstorage_version is defined %}
|
|
bs-version={{ cinder_blockstorage_version }}
|
|
{% endif %}
|
|
{% if node_volume_attach_limit is defined and node_volume_attach_limit != "" %}
|
|
node-volume-attach-limit="{{ node_volume_attach_limit }}"
|
|
{% endif %} |