From 7c9c609ac420073cae01d7246e7cdc32973480a1 Mon Sep 17 00:00:00 2001 From: Smaine Kahlouch Date: Tue, 22 Dec 2015 08:45:14 +0100 Subject: [PATCH] calico uses loadbalancer address for apiserver --- roles/network_plugin/templates/network-environment.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/network_plugin/templates/network-environment.j2 b/roles/network_plugin/templates/network-environment.j2 index 6b8330a64..6173a7a97 100755 --- a/roles/network_plugin/templates/network-environment.j2 +++ b/roles/network_plugin/templates/network-environment.j2 @@ -20,7 +20,11 @@ ETCD_AUTHORITY="127.0.0.1:23799" {% endif %} # The kubernetes-apiserver location - used by the calico plugin +{% if loadbalancer_apiserver is defined and apiserver_loadbalancer_domain_name is defined %} +KUBE_API_ROOT=https://{{ apiserver_loadbalancer_domain_name }}:{{ loadbalancer_apiserver.port }}/api/v1/ +{% else %} KUBE_API_ROOT=https://{{ hostvars[groups['kube-master'][0]]['ip'] | default(hostvars[groups['kube-master'][0]]['ansible_default_ipv4']['address']) }}:{{kube_apiserver_port}}/api/v1/ +{% endif %} {% else %} FLANNEL_ETCD_PREFIX="--etcd-prefix=/{{ cluster_name }}/network" {% endif %}