Add workaround with include_task for mitogen (#6312)

This commit is contained in:
spaced
2020-07-07 17:09:59 +02:00
committed by GitHub
parent 935c5093e2
commit 9433fe46c8
2 changed files with 17 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
---
# include to workaround mitogen issue
# https://github.com/dw/mitogen/issues/663
- name: "Local Volume Provisioner | Ensure base dir {{ delegate_host_base_dir.1 }} is created on {{ delegate_host_base_dir.0 }}"
file:
path: "{{ local_volume_provisioner_storage_classes[delegate_host_base_dir.1].host_dir }}"
state: directory
owner: root
group: root
mode: "{{ local_volume_provisioner_directory_mode }}"
delegate_to: "{{ delegate_host_base_dir.0 }}"