2015-12-11 10:44:41 +00:00
|
|
|
#! /usr/bin/bash
|
|
|
|
{% if kube_network_plugin == "calico" %}
|
|
|
|
# This node's IPv4 address
|
|
|
|
CALICO_IPAM=true
|
|
|
|
DEFAULT_IPV4={{ip | default(ansible_default_ipv4.address) }}
|
|
|
|
|
|
|
|
# The kubernetes master IP
|
2015-12-21 08:13:48 +00:00
|
|
|
{% if loadbalancer_apiserver is defined and apiserver_loadbalancer_domain_name is defined %}
|
|
|
|
KUBERNETES_MASTER=https://{{ apiserver_loadbalancer_domain_name }}:{{ loadbalancer_apiserver.port }}
|
|
|
|
{% else %}
|
2015-12-16 22:49:01 +00:00
|
|
|
KUBERNETES_MASTER={{ hostvars[groups['kube-master'][0]]['ip'] | default(hostvars[groups['kube-master'][0]]['ansible_default_ipv4']['address']) }}
|
2015-12-21 08:13:48 +00:00
|
|
|
{% endif %}
|
2015-12-11 10:44:41 +00:00
|
|
|
|
|
|
|
# Location of etcd cluster used by Calico. By default, this uses the etcd
|
|
|
|
# instance running on the Kubernetes Master
|
2015-12-15 10:49:11 +00:00
|
|
|
ETCD_AUTHORITY="127.0.0.1:2379"
|
2015-12-29 11:10:49 +00:00
|
|
|
#{% if inventory_hostname in groups['etcd'] %}
|
|
|
|
#ETCD_AUTHORITY="127.0.0.1:2379"
|
|
|
|
#{% else %}
|
|
|
|
#ETCD_AUTHORITY="127.0.0.1:23799"
|
|
|
|
#{% endif %}
|
2015-12-11 10:44:41 +00:00
|
|
|
|
|
|
|
# The kubernetes-apiserver location - used by the calico plugin
|
2015-12-22 07:45:14 +00:00
|
|
|
{% 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 %}
|
2015-12-18 21:22:52 +00:00
|
|
|
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/
|
2015-12-22 07:45:14 +00:00
|
|
|
{% endif %}
|
2015-12-11 10:44:41 +00:00
|
|
|
{% else %}
|
|
|
|
FLANNEL_ETCD_PREFIX="--etcd-prefix=/{{ cluster_name }}/network"
|
|
|
|
{% endif %}
|
2015-12-29 11:10:49 +00:00
|
|
|
{% if calico_token is defined | default('') %}
|
|
|
|
KUBE_AUTH_TOKEN={{ calico_token.content|b64decode }}
|
|
|
|
{% endif %}
|