You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
875 B

  1. ---
  2. # To access Cinder, the CSI controller will need credentials to access
  3. # openstack apis. Per default this values will be
  4. # read from the environment.
  5. cinder_auth_url: "{{ lookup('env','OS_AUTH_URL') }}"
  6. cinder_username: "{{ lookup('env','OS_USERNAME') }}"
  7. cinder_password: "{{ lookup('env','OS_PASSWORD') }}"
  8. cinder_region: "{{ lookup('env','OS_REGION_NAME') }}"
  9. cinder_tenant_id: "{{ lookup('env','OS_TENANT_ID')| default(lookup('env','OS_PROJECT_ID'),true) }}"
  10. cinder_tenant_name: "{{ lookup('env','OS_TENANT_NAME')| default(lookup('env','OS_PROJECT_NAME'),true) }}"
  11. cinder_domain_name: "{{ lookup('env','OS_USER_DOMAIN_NAME') }}"
  12. cinder_domain_id: "{{ lookup('env','OS_USER_DOMAIN_ID') }}"
  13. cinder_cacert: "{{ lookup('env','OS_CACERT') }}"
  14. # For now, only Cinder v3 is supported in Cinder CSI driver
  15. cinder_blockstorage_version: "v3"
  16. cinder_csi_controller_replicas: 1