|
|
@ -13,11 +13,12 @@ KUBERNETES_MASTER={{ hostvars[groups['kube-master'][0]]['ip'] | default(hostvars |
|
|
|
|
|
|
|
# Location of etcd cluster used by Calico. By default, this uses the etcd |
|
|
|
# instance running on the Kubernetes Master |
|
|
|
{% if inventory_hostname in groups['etcd'] %} |
|
|
|
ETCD_AUTHORITY="127.0.0.1:2379" |
|
|
|
{% else %} |
|
|
|
ETCD_AUTHORITY="127.0.0.1:23799" |
|
|
|
{% endif %} |
|
|
|
#{% if inventory_hostname in groups['etcd'] %} |
|
|
|
#ETCD_AUTHORITY="127.0.0.1:2379" |
|
|
|
#{% else %} |
|
|
|
#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 %} |
|
|
@ -28,3 +29,6 @@ KUBE_API_ROOT=https://{{ hostvars[groups['kube-master'][0]]['ip'] | default(host |
|
|
|
{% else %} |
|
|
|
FLANNEL_ETCD_PREFIX="--etcd-prefix=/{{ cluster_name }}/network" |
|
|
|
{% endif %} |
|
|
|
{% if calico_token is defined | default('') %} |
|
|
|
KUBE_AUTH_TOKEN={{ calico_token.content|b64decode }} |
|
|
|
{% endif %} |