[EOS-11830] Use ETCD port 2381 for metrics (#10332)
parent
2fbbb70baa
commit
7295d13d60
|
@ -44,3 +44,9 @@ kubeEtcd:
|
||||||
service:
|
service:
|
||||||
enabled: false
|
enabled: false
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To fully override metrics exposition urls, define it in the inventory with:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
etcd_listen_metrics_urls: "http://0.0.0.0:2381"
|
||||||
|
```
|
||||||
|
|
|
@ -5,7 +5,9 @@ ETCD_INITIAL_ADVERTISE_PEER_URLS={{ etcd_peer_url }}
|
||||||
ETCD_INITIAL_CLUSTER_STATE={% if etcd_cluster_is_healthy.rc == 0 | bool %}existing{% else %}new{% endif %}
|
ETCD_INITIAL_CLUSTER_STATE={% if etcd_cluster_is_healthy.rc == 0 | bool %}existing{% else %}new{% endif %}
|
||||||
|
|
||||||
ETCD_METRICS={{ etcd_metrics }}
|
ETCD_METRICS={{ etcd_metrics }}
|
||||||
{% if etcd_metrics_port is defined %}
|
{% if etcd_listen_metrics_urls is defined %}
|
||||||
|
ETCD_LISTEN_METRICS_URLS={{ etcd_listen_metrics_urls }}
|
||||||
|
{% elif etcd_metrics_port is defined %}
|
||||||
ETCD_LISTEN_METRICS_URLS=http://{{ etcd_address }}:{{ etcd_metrics_port }},http://127.0.0.1:{{ etcd_metrics_port }}
|
ETCD_LISTEN_METRICS_URLS=http://{{ etcd_address }}:{{ etcd_metrics_port }},http://127.0.0.1:{{ etcd_metrics_port }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ETCD_LISTEN_CLIENT_URLS=https://{{ etcd_address }}:2379,https://127.0.0.1:2379
|
ETCD_LISTEN_CLIENT_URLS=https://{{ etcd_address }}:2379,https://127.0.0.1:2379
|
||||||
|
|
|
@ -58,6 +58,9 @@ etcd:
|
||||||
election-timeout: "{{ etcd_election_timeout }}"
|
election-timeout: "{{ etcd_election_timeout }}"
|
||||||
heartbeat-interval: "{{ etcd_heartbeat_interval }}"
|
heartbeat-interval: "{{ etcd_heartbeat_interval }}"
|
||||||
auto-compaction-retention: "{{ etcd_compaction_retention }}"
|
auto-compaction-retention: "{{ etcd_compaction_retention }}"
|
||||||
|
{% if etcd_listen_metrics_urls is defined %}
|
||||||
|
listen-metrics-urls: "{{ etcd_listen_metrics_urls }}"
|
||||||
|
{% endif %}
|
||||||
{% if etcd_snapshot_count is defined %}
|
{% if etcd_snapshot_count is defined %}
|
||||||
snapshot-count: "{{ etcd_snapshot_count }}"
|
snapshot-count: "{{ etcd_snapshot_count }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue