2025-05-20 15:06:04 -07:00
|
|
|
- name: Ensure the root data directory is present
|
|
|
|
|
ansible.builtin.file:
|
2025-05-25 22:56:07 -07:00
|
|
|
path: "{{ nomad.volumes.root }}"
|
2025-05-20 15:06:04 -07:00
|
|
|
state: directory
|
2025-05-26 01:10:00 -07:00
|
|
|
mode: "0755"
|
2025-05-20 15:06:04 -07:00
|
|
|
- name: Ensure registry volume is present
|
|
|
|
|
ansible.builtin.file:
|
2025-05-25 22:56:07 -07:00
|
|
|
path: "{{ nomad.volumes.registry }}"
|
2025-05-26 01:10:00 -07:00
|
|
|
state: directory
|
|
|
|
|
mode: "0755"
|