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.

6 lines
415 B

  1. WEAVE_PEERS="{% for host in groups['k8s-cluster'] %}{{ hostvars[host]['access_ip'] | default(hostvars[host]['ip'] | default(hostvars[host]['ansible_default_ipv4']['address'])) }}{% if not loop.last %} {% endif %}{% endfor %}"
  2. WEAVEPROXY_ARGS="--rewrite-inspect --without-dns"
  3. WEAVE_SUBNET="--ipalloc-range {{ kube_pods_subnet }}"
  4. {% if weave_password is defined %}
  5. WEAVE_PASSWORD="{{ weave_password }}"
  6. {% endif %}