Fix prometheus ssl certs

This commit is contained in:
Alex 2023-01-03 21:00:10 +01:00
parent 606668e25e
commit fe805b6bab
Signed by: lx
GPG Key ID: 0E496D15096376BE
2 changed files with 11 additions and 11 deletions

View File

@ -12,7 +12,7 @@ scrape_configs:
services:
- 'node-exporter'
tls_config:
ca_file: /etc/prometheus/consul.crt
ca_file: /etc/prometheus/consul-ca.crt
cert_file: /etc/prometheus/consul-client.crt
key_file: /etc/prometheus/consul-client.key
@ -22,7 +22,7 @@ scrape_configs:
services:
- 'tricot-metrics'
tls_config:
ca_file: /etc/prometheus/consul.crt
ca_file: /etc/prometheus/consul-ca.crt
cert_file: /etc/prometheus/consul-client.crt
key_file: /etc/prometheus/consul-client.key
@ -35,7 +35,7 @@ scrape_configs:
services:
- 'garage-admin'
tls_config:
ca_file: /etc/prometheus/consul.crt
ca_file: /etc/prometheus/consul-ca.crt
cert_file: /etc/prometheus/consul-client.crt
key_file: /etc/prometheus/consul-client.key
@ -48,7 +48,7 @@ scrape_configs:
services:
- 'drone'
tls_config:
ca_file: /etc/prometheus/consul.crt
ca_file: /etc/prometheus/consul-ca.crt
cert_file: /etc/prometheus/consul-client.crt
key_file: /etc/prometheus/consul-client.key
@ -63,7 +63,7 @@ scrape_configs:
format: ['prometheus']
scheme: 'https'
tls_config:
ca_file: /etc/prometheus/nomad.crt
ca_file: /etc/prometheus/nomad-ca.crt
cert_file: /etc/prometheus/nomad-client.crt
key_file: /etc/prometheus/nomad-client.key
insecure_skip_verify: true
@ -72,6 +72,6 @@ scrape_configs:
services:
- 'nomad-client'
tls_config:
ca_file: /etc/prometheus/consul.crt
ca_file: /etc/prometheus/consul-ca.crt
cert_file: /etc/prometheus/consul-client.crt
key_file: /etc/prometheus/consul-client.key

View File

@ -1,4 +1,4 @@
job "telemetry" {
job "telemetry-service" {
datacenters = ["neptune", "bespin"]
type = "service"
@ -40,8 +40,8 @@ job "telemetry" {
}
template {
data = "{{ key \"secrets/consul/consul.crt\" }}"
destination = "secrets/consul.crt"
data = "{{ key \"secrets/consul/consul-ca.crt\" }}"
destination = "secrets/consul-ca.crt"
}
template {
@ -55,8 +55,8 @@ job "telemetry" {
}
template {
data = "{{ key \"secrets/nomad/nomad.crt\" }}"
destination = "secrets/nomad.crt"
data = "{{ key \"secrets/nomad/nomad-ca.crt\" }}"
destination = "secrets/nomad-ca.crt"
}
template {