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.
12 lines
355 B
YAML
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']}}"
|