nomad/ansible/roles/run-nomad/tasks/main.yaml
Wojtek Bednarzak 0c739d4e24
ansible: Deploy nomad jobs using ansible
This is an untested change because I don't have the same environment as
Redbrick, but I think it would be beneficial to deploy the jobs using
Ansible. This means that it can be automated in the future.

One drawback of this approach is that we don't plan ahead of time, but
that should be done as part of a pull request anyways.
2023-03-22 23:35:45 +00:00

12 lines
355 B
YAML

---
# TODO: Add Nomad namespaces.
- name: Run {{ item }} Nomad Job
community.general.nomad_job:
host: "{{ lookup('ansible.builtin.env', 'NOMAD_ADDR')}}"
token: "{{ lookup('ansible.builtin.env', 'NOMAD_TOKEN')}}"
state: present
content: "{{ lookup('file', '../jobs/' - task - ''.hcl') }}"
with_items:
- "{{ groups['nomad_jobs']}}"