You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
477 B

  1. # This host's IPv4 address (the source IP address used to reach other nodes
  2. # in the Kubernetes cluster).
  3. DEFAULT_IPV4={{ip | default(ansible_default_ipv4.address) }}
  4. # The Kubernetes master IP
  5. KUBERNETES_MASTER={{ hostvars[groups['kube-master'][0]]['access_ip'] | default(hostvars[groups['kube-master'][0]]['ip'] | default(hostvars[groups['kube-master'][0]]['ansible_default_ipv4']['address'])) }}
  6. # IP and port of etcd instance used by Calico
  7. ETCD_AUTHORITY=127.0.0.1:2379