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.

12 lines
476 B

  1. ---
  2. # include to workaround mitogen issue
  3. # https://github.com/dw/mitogen/issues/663
  4. - name: "Local Volume Provisioner | Ensure base dir {{ delegate_host_base_dir.1 }} is created on {{ delegate_host_base_dir.0 }}"
  5. file:
  6. path: "{{ local_volume_provisioner_storage_classes[delegate_host_base_dir.1].host_dir }}"
  7. state: directory
  8. owner: root
  9. group: root
  10. mode: "{{ local_volume_provisioner_directory_mode }}"
  11. delegate_to: "{{ delegate_host_base_dir.0 }}"