Browse Source

Calico: fix node ip subnet detection (#7065)

We are currently setting the IP variable to hostIP,
Before https://github.com/projectcalico/node/pull/593 (not yet released)
Calico interpret that as hostIP/32
Using 'can-reach' we get the future behavior
This fixes vxlan and IPIP CrossSubnet modes

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
pull/7075/head
Etienne Champetier 3 years ago
committed by GitHub
parent
commit
7d7739e031
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions
  1. 6
      roles/network_plugin/calico/templates/calico-node.yml.j2

6
roles/network_plugin/calico/templates/calico-node.yml.j2

@ -230,10 +230,14 @@ spec:
- name: IP
value: "autodetect"
{% else %}
- name: IP
- name: NODEIP
valueFrom:
fieldRef:
fieldPath: status.hostIP
- name: IP_AUTODETECTION_METHOD
value: "can-reach=$(NODEIP)"
- name: IP
value: "autodetect"
{% endif %}
{% if calico_use_default_route_src_ipaddr|default(false) %}
- name: FELIX_DEVICEROUTESOURCEADDRESS

Loading…
Cancel
Save