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.

20 lines
1.1 KiB

  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_application_credential_id: "{{ lookup('env','OS_APPLICATION_CREDENTIAL_ID') }}"
  9. cinder_application_credential_name: "{{ lookup('env','OS_APPLICATION_CREDENTIAL_NAME') }}"
  10. cinder_application_credential_secret: "{{ lookup('env','OS_APPLICATION_CREDENTIAL_SECRET') }}"
  11. cinder_region: "{{ lookup('env','OS_REGION_NAME') }}"
  12. cinder_tenant_id: "{{ lookup('env','OS_TENANT_ID')| default(lookup('env','OS_PROJECT_ID'),true) }}"
  13. cinder_tenant_name: "{{ lookup('env','OS_TENANT_NAME')| default(lookup('env','OS_PROJECT_NAME'),true) }}"
  14. cinder_domain_name: "{{ lookup('env','OS_USER_DOMAIN_NAME') }}"
  15. cinder_domain_id: "{{ lookup('env','OS_USER_DOMAIN_ID') }}"
  16. cinder_cacert: "{{ lookup('env','OS_CACERT') }}"
  17. # For now, only Cinder v3 is supported in Cinder CSI driver
  18. cinder_blockstorage_version: "v3"
  19. cinder_csi_controller_replicas: 1