Removing all ansible-linter errors
Some checks failed
Ansible Linting / build (push) Failing after 16s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 18s
Wiki Resources Sanity Checks / ruff-checks (push) Successful in 7s

This commit is contained in:
2026-04-26 01:35:56 -07:00
parent c44babf3d8
commit fbe6e5c3e2
15 changed files with 33 additions and 30 deletions

View File

@@ -1,18 +1,18 @@
- name: Nomad server configuration
become: true
become: true
block:
- name: Ensure the root data directory is present
ansible.builtin.file:
path: "{{ nomad.volumes.root }}"
path: "{{ nomad_data.volumes.root }}"
state: absent
mode: "0755"
- name: Ensure registry volume is present
ansible.builtin.file:
path: "{{ nomad.volumes.registry }}"
path: "{{ nomad_data.volumes.registry }}"
state: absent
mode: "0755"
- name: Ensure the MinIO diretory is present
ansible.builtin.file:
path: "{{ nomad.volumes.nfs }}"
path: "{{ nomad_data.volumes.nfs }}"
state: absent
mode: "0755"

View File

@@ -1,4 +1,4 @@
nomad:
nomad_data:
volumes:
root: /opt/volumes
registry: /opt/volumes/ncr