Files
infra/ansible/roles/nomad/tasks/main.yaml

11 lines
294 B
YAML
Raw Normal View History

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