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.

48 lines
2.1 KiB

  1. ---
  2. cinder_csi_attacher_image_tag: "v4.4.2"
  3. cinder_csi_provisioner_image_tag: "v3.6.2"
  4. cinder_csi_snapshotter_image_tag: "v6.3.2"
  5. cinder_csi_resizer_image_tag: "v1.9.2"
  6. cinder_csi_livenessprobe_image_tag: "v2.11.0"
  7. # To access Cinder, the CSI controller will need credentials to access
  8. # openstack apis. Per default this values will be
  9. # read from the environment.
  10. cinder_auth_url: "{{ lookup('env', 'OS_AUTH_URL') }}"
  11. cinder_username: "{{ lookup('env', 'OS_USERNAME') }}"
  12. cinder_password: "{{ lookup('env', 'OS_PASSWORD') }}"
  13. cinder_application_credential_id: "{{ lookup('env', 'OS_APPLICATION_CREDENTIAL_ID') }}"
  14. cinder_application_credential_name: "{{ lookup('env', 'OS_APPLICATION_CREDENTIAL_NAME') }}"
  15. cinder_application_credential_secret: "{{ lookup('env', 'OS_APPLICATION_CREDENTIAL_SECRET') }}"
  16. cinder_region: "{{ lookup('env', 'OS_REGION_NAME') }}"
  17. cinder_tenant_id: "{{ lookup('env', 'OS_TENANT_ID') | default(lookup('env', 'OS_PROJECT_ID'), true) }}"
  18. cinder_tenant_name: "{{ lookup('env', 'OS_TENANT_NAME') | default(lookup('env', 'OS_PROJECT_NAME'), true) }}"
  19. cinder_domain_name: "{{ lookup('env', 'OS_USER_DOMAIN_NAME') }}"
  20. cinder_domain_id: "{{ lookup('env', 'OS_USER_DOMAIN_ID') }}"
  21. cinder_cacert: "{{ lookup('env', 'OS_CACERT') }}"
  22. # For now, only Cinder v3 is supported in Cinder CSI driver
  23. cinder_blockstorage_version: "v3"
  24. cinder_csi_controller_replicas: 1
  25. # Optional. Set to true, to rescan block device and verify its size before expanding
  26. # the filesystem.
  27. # Not all hypervizors have a /sys/class/block/XXX/device/rescan location, therefore if
  28. # you enable this option and your hypervizor doesn't support this, you'll get a warning
  29. # log on resize event. It is recommended to disable this option in this case.
  30. # Defaults to false
  31. # cinder_csi_rescan_on_resize: true
  32. cinder_tolerations: []
  33. ## Dictionaries of extra arguments to add to the cinder CSI plugin containers
  34. ## Format:
  35. ## cinder_csi_attacher_extra_args:
  36. ## arg1: "value1"
  37. ## arg2: "value2"
  38. cinder_csi_attacher_extra_args: {}
  39. cinder_csi_provisioner_extra_args: {}
  40. cinder_csi_snapshotter_extra_args: {}
  41. cinder_csi_resizer_extra_args: {}
  42. cinder_csi_plugin_extra_args: {}
  43. cinder_liveness_probe_extra_args: {}