From 82def095ff1a84687133d15343ce95225cac0d8b Mon Sep 17 00:00:00 2001 From: Ryan Bonham Date: Fri, 22 May 2020 12:55:13 -0400 Subject: [PATCH] Minor doc fix. __address__ is not valid to use, will cuase etcd failing to start.. Should pass in 0.0.0.0 as address. --- docs/cluster_spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cluster_spec.md b/docs/cluster_spec.md index 6b9edbb0cccb1..c4d514db92064 100644 --- a/docs/cluster_spec.md +++ b/docs/cluster_spec.md @@ -143,7 +143,7 @@ etcdClusters: manager: env: - name: ETCD_LISTEN_METRICS_URLS - value: http://__address__:8081 + value: http://0.0.0.0:8081 - name: ETCD_METRICS value: basic ```