mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-15 22:34:21 +03:00
Deploy Cinder CSI driver to provision volumes over OpenStack (#5184)
* Deploy Cinder CSI driver to provision volumes over OpenStack * Deploy Cinder CSI StorageClass * Cinder CSI doc
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
79128dcd6b
commit
b0ee1f6cc6
@@ -0,0 +1,26 @@
|
||||
[Global]
|
||||
auth-url="{{ cinder_auth_url }}"
|
||||
username="{{ cinder_username }}"
|
||||
password="{{ cinder_password }}"
|
||||
region="{{ cinder_region }}"
|
||||
{% if cinder_trust_id is defined and cinder_trust_id != "" %}
|
||||
trust-id="{{ cinder_trust_id }}"
|
||||
{% else %}
|
||||
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 %}
|
||||
Reference in New Issue
Block a user