From 19b92cf2683f42dd0482cc233c29a81e2cb993ce Mon Sep 17 00:00:00 2001 From: James Hackett Date: Thu, 8 Dec 2022 00:58:00 +0000 Subject: [PATCH] ensures templates use correct vars --- ansible/templates/nomad-base.hcl | 10 ---------- ansible/templates/nomad-base.hcl.j2 | 10 ++++++++++ ansible/templates/nomad.service | 25 +++++++++++++++++++++++++ 3 files changed, 35 insertions(+), 10 deletions(-) delete mode 100644 ansible/templates/nomad-base.hcl create mode 100644 ansible/templates/nomad-base.hcl.j2 create mode 100644 ansible/templates/nomad.service diff --git a/ansible/templates/nomad-base.hcl b/ansible/templates/nomad-base.hcl deleted file mode 100644 index 7107419..0000000 --- a/ansible/templates/nomad-base.hcl +++ /dev/null @@ -1,10 +0,0 @@ -datacenter = {{ nomad_datacenter_name }} -data_dir = "/opt/nomad" - -bind_addr = "0.0.0.0" - -advertise { - http = "{{ ansible_default_ipv4[address] }}" - rpc = "{{ ansible_default_ipv4[address] }}" - serf = "{{ ansible_default_ipv4[address] }}" -} diff --git a/ansible/templates/nomad-base.hcl.j2 b/ansible/templates/nomad-base.hcl.j2 new file mode 100644 index 0000000..8595771 --- /dev/null +++ b/ansible/templates/nomad-base.hcl.j2 @@ -0,0 +1,10 @@ +datacenter = "{{ nomad_datacenter_name }}" +data_dir = "/opt/nomad" + +bind_addr = "0.0.0.0" + +advertise { + http = "{{ ansible_host }}" + rpc = "{{ ansible_host }}" + serf = "{{ ansible_host }}" +} diff --git a/ansible/templates/nomad.service b/ansible/templates/nomad.service new file mode 100644 index 0000000..546ed94 --- /dev/null +++ b/ansible/templates/nomad.service @@ -0,0 +1,25 @@ +[Unit] +Wants=network-online.target +After=network-online.target + +Wants=consul.service +After=consul.service + +[Service] +User=root +Group=root + +ExecReload=/bin/kill -HUP $MAINPID +ExecStart=/usr/bin/nomad agent -config /etc/nomad.d +KillMode=process +KillSignal=SIGINT +LimitNOFILE=65536 +LimitNPROC=infinity +Restart=on-failure +RestartSec=2 + +TasksMax=infinity +OOMScoreAdjust=-1000 + +[Install] +WantedBy=multi-user.target \ No newline at end of file