From c3b22e9f21c46273fd7beba9607dad06447d65f4 Mon Sep 17 00:00:00 2001 From: Jimmy Song Date: Tue, 5 Dec 2017 23:07:19 +0800 Subject: [PATCH] change https to http --- systemd/etcd.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemd/etcd.service b/systemd/etcd.service index 893337806..c1ad4e3e1 100644 --- a/systemd/etcd.service +++ b/systemd/etcd.service @@ -19,7 +19,7 @@ ExecStart=/usr/bin/etcd \ --peer-trusted-ca-file=/etc/kubernetes/ssl/ca.pem \ --initial-advertise-peer-urls https://172.20.0.113:2380 \ --listen-peer-urls https://172.20.0.113:2380 \ - --listen-client-urls https://172.20.0.113:2379,https://127.0.0.1:2379 \ + --listen-client-urls https://172.20.0.113:2379,http://127.0.0.1:2379 \ --advertise-client-urls https://172.20.0.113:2379 \ --initial-cluster-token etcd-cluster-0 \ --initial-cluster etcd-host0=https://172.20.0.113:2380,etcd-host1=https://172.20.0.114:2380,etcd-host2=https://172.20.0.115:2380 \