From 0c739d4e24dd60290417f7b5f3b9e50b85085970 Mon Sep 17 00:00:00 2001 From: Wojtek Bednarzak Date: Wed, 22 Mar 2023 23:35:45 +0000 Subject: [PATCH] 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. --- ansible/group_vars/all.yml.sample | 7 ++++++- ansible/roles/run-nomad/tasks/main.yaml | 12 ++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 ansible/roles/run-nomad/tasks/main.yaml diff --git a/ansible/group_vars/all.yml.sample b/ansible/group_vars/all.yml.sample index 2c2bba8..e1dfe5f 100644 --- a/ansible/group_vars/all.yml.sample +++ b/ansible/group_vars/all.yml.sample @@ -1,4 +1,9 @@ ansible_user: CHANGEME nomad_datacenter_name: "aperture" nomad_server_bootstrap_expect: 3 -consul_generated_encrypt_key: CHANGEME \ No newline at end of file +consul_generated_encrypt_key: CHANGEME + +nomad_jobs: +- traefik +- dcufm +- user-vms/distro diff --git a/ansible/roles/run-nomad/tasks/main.yaml b/ansible/roles/run-nomad/tasks/main.yaml new file mode 100644 index 0000000..6c5c196 --- /dev/null +++ b/ansible/roles/run-nomad/tasks/main.yaml @@ -0,0 +1,12 @@ +--- + +# 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']}}"