ensures templates use correct vars
This commit is contained in:
parent
196a27fde5
commit
19b92cf268
3 changed files with 35 additions and 10 deletions
|
@ -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] }}"
|
||||
}
|
10
ansible/templates/nomad-base.hcl.j2
Normal file
10
ansible/templates/nomad-base.hcl.j2
Normal file
|
@ -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 }}"
|
||||
}
|
25
ansible/templates/nomad.service
Normal file
25
ansible/templates/nomad.service
Normal file
|
@ -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
|
Loading…
Reference in a new issue