Unverified Commit 3ca752c6 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #61960 from jpbetz/migrate-if-needed-ha-fix-1.10

Automatic merge from submit-queue. Backport etcd.manifest fixes for HA clusters from #61241 to 1.10 Backport the `etcd.manifest` changes from #61241 to kubernetes 1.8. This fixes GCE configurations using HA etcd with k8s.gcr.io/etcd images built from #61241 (k8s.gcr.io/etcd:e.g. 3.1.13-0). ```release-note Fix GCE etcd scripts to pass in all required parameters for the etcd migration utility to correctly perform HA upgrades and downgrades ```
parents 18ca81f0 204616bd
...@@ -37,6 +37,12 @@ ...@@ -37,6 +37,12 @@
{ "name": "INITIAL_CLUSTER", { "name": "INITIAL_CLUSTER",
"value": "{{ etcd_cluster }}" "value": "{{ etcd_cluster }}"
}, },
{ "name": "LISTEN_PEER_URLS",
"value": "{{ etcd_protocol }}://{{ host_ip }}:{{ server_port }}"
},
{ "name": "INITIAL_ADVERTISE_PEER_URLS",
"value": "{{ etcd_protocol }}://{{ hostname }}:{{ server_port }}"
},
{ "name": "ETCD_CREDS", { "name": "ETCD_CREDS",
"value": "{{ etcd_creds }}" "value": "{{ etcd_creds }}"
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment