2016-12-05 11:06:16 +00:00
|
|
|
ETCD_ENDPOINTS="{{ etcd_access_endpoint }}"
|
|
|
|
ETCD_CA_CERT_FILE="{{ calico_cert_dir }}/ca_cert.crt"
|
|
|
|
ETCD_CERT_FILE="{{ calico_cert_dir }}/cert.crt"
|
|
|
|
ETCD_KEY_FILE="{{ calico_cert_dir }}/key.pem"
|
|
|
|
CALICO_IP="{{ip | default(ansible_default_ipv4.address) }}"
|
|
|
|
CALICO_IP6=""
|
|
|
|
{% if calico_network_backend is defined %}
|
|
|
|
CALICO_NETWORKING_BACKEND="{{calico_network_backend }}"
|
|
|
|
{% endif %}
|
|
|
|
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
|
|
|
|
CALICO_AS="{{ local_as }}"
|
|
|
|
{% endif %}
|
|
|
|
CALICO_NO_DEFAULT_POOLS="true"
|
|
|
|
CALICO_LIBNETWORK_ENABLED="true"
|
2016-12-06 12:56:34 +00:00
|
|
|
CALICO_HOSTNAME="{{ inventory_hostname }}"
|