this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Ansible: IPv6 nodeIP should use the ULA instead of global one.

+7 -2
+3 -1
provision/ansible/nebula/inventory/group_vars/master/k3s.yml
··· 7 7 8 8 # k3s settings for all control-plane nodes 9 9 k3s_server: 10 - node-ip: "{{ ansible_host }},{{ ansible_default_ipv6.address }}" 10 + node-ip: "{{ ansible_host }},{{ ansible_all_ipv6_addresses | select('match', '^fd[9a-fA-F]{1}') | 11 + select('match', '^fd[0-9a-fA-F]{2}(:[0-9a-fA-F]{0,4}){0,7}$') | reject('match', '^fddf:') | list}}" 12 + node-external-ip: "{{ ansible_default_ipv6.address }}" 11 13 #node-ip: "{{ ansible_default_ipv6.address }},{{ ansible_host }}" 12 14 tls-san: 13 15 - "{{ k3s_registration_address }}"
+4 -1
provision/ansible/nebula/inventory/group_vars/worker/k3s.yml
··· 7 7 8 8 # k3s settings for all worker nodes 9 9 k3s_agent: 10 - node-ip: "{{ ansible_host }},{{ ansible_default_ipv6.address }}" 10 + node-ip: "{{ ansible_host }},{{ ansible_all_ipv6_addresses | select('match', '^fd[9a-fA-F]{1}') | 11 + select('match', '^fd[0-9a-fA-F]{2}(:[0-9a-fA-F]{0,4}){0,7}$') | reject('match', '^fddf:') | list}}" 12 + node-external-ip: "{{ ansible_default_ipv6.address }}" 13 + #node-ip: "{{ ansible_host }},{{ ansible_default_ipv6.address }}" 11 14 #node-ip: "{{ ansible_default_ipv6.address }}" 12 15 #node-ip: "{{ ansible_default_ipv6.address }},{{ ansible_host }}" 13 16 kubelet-arg: