Add node label to etcd metrics (#8475)
targetRef on endpoints surfaces as __meta_kubernetes_endpoint_address_target_kind/__meta_kubernetes_endpoint_address_target_name in prometheus and gets converted to the label `node` by prometheus-operator
This commit is contained in:
parent
e6e7fbc25f
commit
2bbe5732b7
1 changed files with 4 additions and 1 deletions
|
@ -7,9 +7,12 @@ metadata:
|
|||
k8s-app: etcd
|
||||
app.kubernetes.io/managed-by: Kubespray
|
||||
subsets:
|
||||
{% for etcd_metrics_address in etcd_metrics_addresses.split(',') %}
|
||||
{% for etcd_metrics_address, etcd_host in etcd_metrics_addresses.split(',') | zip(etcd_hosts) %}
|
||||
- addresses:
|
||||
- ip: {{ etcd_metrics_address | urlsplit('hostname') }}
|
||||
targetRef:
|
||||
kind: Node
|
||||
name: {{ etcd_host }}
|
||||
ports:
|
||||
- name: http-metrics
|
||||
port: {{ etcd_metrics_address | urlsplit('port') }}
|
||||
|
|
Loading…
Reference in a new issue