c12s-kubespray/roles/network_plugin/templates/calico/network-environment.j2

20 lines
712 B
Plaintext
Raw Normal View History

2015-10-03 20:19:50 +00:00
#! /usr/bin/bash
# This node's IPv4 address
CALICO_IPAM=true
2015-11-01 10:12:12 +00:00
DEFAULT_IPV4={{ip | default(ansible_default_ipv4.address) }}
2015-10-03 20:19:50 +00:00
{% if inventory_hostname in groups['kube-node'] %}
# The kubernetes master IP
KUBERNETES_MASTER={{ groups['kube-master'][0] }}
# Location of etcd cluster used by Calico. By default, this uses the etcd
# instance running on the Kubernetes Master
ETCD_AUTHORITY={{ groups['kube-master'][0] }}:4001
# The kubernetes-apiserver location - used by the calico plugin
2015-11-01 10:12:12 +00:00
KUBE_API_ROOT=http://{{ groups['kube-master'][0] }}:{{kube_master_insecure_port}}/api/v1/
2015-10-03 20:19:50 +00:00
# Location of the calicoctl binary - used by the calico plugin
CALICOCTL_PATH="{{ bin_dir }}/calicoctl"
{% endif %}