Update nomad base template to include metrics

This commit is contained in:
DistroByte 2023-09-01 01:13:46 +01:00
parent 917571a140
commit dded8a94f6
No known key found for this signature in database
GPG key ID: 216AF164FD24BD37
2 changed files with 12 additions and 4 deletions

View file

@ -4,7 +4,7 @@ encrypt = "{{ consul_generated_encrypt_key }}"
verify_incoming = true
verify_outgoing = true
verify_server_hostname = true
bind_addr = "{% raw %}{{ GetPrivateInterfaces | include \"network\" \"10.0.0.0/8\" | attr \"address\" }}{% endraw %}"
bind_addr = "{% raw %}{{ GetPrivateInterfaces | include \"network\" \"192.168.1.0/24\" | attr \"address\" }}{% endraw %}"
client_addr = "0.0.0.0"
ca_file = "/etc/consul.d/consul-agent-ca.pem"
@ -15,9 +15,9 @@ auto_encrypt {
allow_tls = true
}
# This ugly line is to get the IP addresses of the other consul servers, excluding the current host.
# This ugly line is to get the hostnames of the other consul servers, excluding the current host.
# Consul cannot join itself, so we need to exclude the current host.
retry_join = ["{{ groups.nomad|difference([inventory_hostname])| map('extract', hostvars, ['ansible_host'])|join('","') }}"]
retry_join = ["{{ groups.nomad|difference([inventory_hostname]) | join('", "')}}"]
acl {
enabled = false
@ -30,4 +30,4 @@ performance {
}
# TODO: change once DNS is running on a host
recursors = ["10.10.0.1"] # adds DNS forwarding for non-`.consul` domains
recursors = ["192.168.1.6"] # adds DNS forwarding for non-`.consul` domains

View file

@ -8,3 +8,11 @@ advertise {
rpc = "{{ ansible_host }}"
serf = "{{ ansible_host }}"
}
telemetry {
collection_interval = "1s"
disable_hostname = true
prometheus_metrics = true
publish_allocation_metrics = true
publish_node_metrics = true
}