Browse Source

Merge pull request #494 from kubespray/etcd_proxy_fix

always bind etcd_proxy to localhost
pull/491/head
Smaine Kahlouch 8 years ago
committed by GitHub
parent
commit
0643ed968f
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubernetes/preinstall/tasks/set_facts.yml

2
roles/kubernetes/preinstall/tasks/set_facts.yml

@ -25,7 +25,7 @@
- set_fact: etcd_access_address="{{ access_ip | default(etcd_address) }}"
- set_fact: etcd_peer_url="http://{{ etcd_access_address }}:2380"
- set_fact: etcd_client_url="http://{{ etcd_access_address }}:2379"
- set_fact: etcd_authority="{{ access_ip|default('127.0.0.1') }}:2379"
- set_fact: etcd_authority="127.0.0.1:2379"
- set_fact: etcd_endpoint="http://{{ etcd_authority }}"
- set_fact:
etcd_access_addresses: |-

Loading…
Cancel
Save