2016-11-28 12:18:06 +00:00
|
|
|
---
|
2021-04-29 12:20:50 +00:00
|
|
|
- hosts: kube_node
|
2016-11-28 12:18:06 +00:00
|
|
|
tasks:
|
2020-08-05 20:22:55 +00:00
|
|
|
- name: Test tunl0 routes
|
|
|
|
shell: "set -o pipefail && ! /sbin/ip ro | grep '/26 via' | grep -v tunl0"
|
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
2018-10-11 07:45:00 +00:00
|
|
|
when:
|
2020-04-29 13:34:24 +00:00
|
|
|
- (ipip|default(true) or cloud_provider is defined)
|
|
|
|
- kube_network_plugin|default('calico') == 'calico'
|
2016-11-28 12:18:06 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
- hosts: k8s_cluster
|
2016-11-28 12:18:06 +00:00
|
|
|
vars:
|
|
|
|
agent_report_interval: 10
|
|
|
|
netcheck_namespace: default
|
|
|
|
netchecker_port: 31081
|
|
|
|
|
|
|
|
tasks:
|
2020-02-18 08:15:29 +00:00
|
|
|
- name: Force binaries directory for Container Linux by CoreOS and Flatcar
|
2016-11-28 12:18:06 +00:00
|
|
|
set_fact:
|
|
|
|
bin_dir: "/opt/bin"
|
2021-10-01 16:11:23 +00:00
|
|
|
when: ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"]
|
2016-11-28 12:18:06 +00:00
|
|
|
|
2019-05-16 07:27:43 +00:00
|
|
|
- name: Force binaries directory on other hosts
|
|
|
|
set_fact:
|
2016-11-28 12:18:06 +00:00
|
|
|
bin_dir: "/usr/local/bin"
|
2021-10-01 16:11:23 +00:00
|
|
|
when: not ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"]
|
2016-11-28 12:18:06 +00:00
|
|
|
|
2021-07-12 07:00:47 +00:00
|
|
|
- import_role: # noqa unnamed-task
|
2020-04-01 14:23:29 +00:00
|
|
|
name: cluster-dump
|
|
|
|
|
2020-08-05 20:22:55 +00:00
|
|
|
- name: Wait for netchecker server
|
|
|
|
shell: "set -o pipefail && {{ bin_dir }}/kubectl get pods -o wide --namespace {{ netcheck_namespace }} | grep ^netchecker-server"
|
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
2016-11-28 12:18:06 +00:00
|
|
|
register: ncs_pod
|
|
|
|
until: ncs_pod.stdout.find('Running') != -1
|
|
|
|
retries: 3
|
|
|
|
delay: 10
|
2021-03-24 00:26:05 +00:00
|
|
|
when: inventory_hostname == groups['kube_control_plane'][0]
|
2016-11-28 12:18:06 +00:00
|
|
|
|
2020-08-05 20:22:55 +00:00
|
|
|
- name: Wait for netchecker agents
|
|
|
|
shell: "set -o pipefail && {{ bin_dir }}/kubectl get pods -o wide --namespace {{ netcheck_namespace }} | grep '^netchecker-agent-.*Running'"
|
|
|
|
args:
|
|
|
|
executable: /bin/bash
|
2016-11-28 12:18:06 +00:00
|
|
|
register: nca_pod
|
2021-04-29 12:20:50 +00:00
|
|
|
until: nca_pod.stdout_lines|length >= groups['k8s_cluster']|intersect(ansible_play_hosts)|length * 2
|
2016-11-28 12:18:06 +00:00
|
|
|
retries: 3
|
|
|
|
delay: 10
|
2019-01-25 16:14:22 +00:00
|
|
|
failed_when: false
|
2021-03-24 00:26:05 +00:00
|
|
|
when: inventory_hostname == groups['kube_control_plane'][0]
|
2019-01-25 16:14:22 +00:00
|
|
|
|
2019-05-16 07:27:43 +00:00
|
|
|
- name: Get netchecker pods
|
|
|
|
command: "{{ bin_dir }}/kubectl -n {{ netcheck_namespace }} describe pod -l app={{ item }}"
|
2019-01-25 16:14:22 +00:00
|
|
|
run_once: true
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2019-01-25 16:14:22 +00:00
|
|
|
no_log: false
|
|
|
|
with_items:
|
|
|
|
- netchecker-agent
|
|
|
|
- netchecker-agent-hostnet
|
|
|
|
when: not nca_pod is success
|
|
|
|
|
2021-07-12 07:00:47 +00:00
|
|
|
- debug: # noqa unnamed-task
|
2019-05-16 07:27:43 +00:00
|
|
|
var: nca_pod.stdout_lines
|
2021-03-24 00:26:05 +00:00
|
|
|
when: inventory_hostname == groups['kube_control_plane'][0]
|
2016-11-28 12:18:06 +00:00
|
|
|
|
|
|
|
- name: Get netchecker agents
|
2019-05-16 07:27:43 +00:00
|
|
|
uri:
|
|
|
|
url: "http://{{ ansible_default_ipv4.address }}:{{ netchecker_port }}/api/v1/agents/"
|
|
|
|
return_content: yes
|
2016-11-28 12:18:06 +00:00
|
|
|
run_once: true
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2016-11-28 12:18:06 +00:00
|
|
|
register: agents
|
2017-02-20 14:09:34 +00:00
|
|
|
retries: 18
|
2016-11-28 12:18:06 +00:00
|
|
|
delay: "{{ agent_report_interval }}"
|
2018-10-11 07:45:00 +00:00
|
|
|
until: agents.content|length > 0 and
|
2016-11-28 12:18:06 +00:00
|
|
|
agents.content[0] == '{' and
|
2021-04-29 12:20:50 +00:00
|
|
|
agents.content|from_json|length >= groups['k8s_cluster']|intersect(ansible_play_hosts)|length * 2
|
2016-12-27 11:38:54 +00:00
|
|
|
failed_when: false
|
2022-03-18 01:05:39 +00:00
|
|
|
no_log: false
|
2019-01-28 11:33:18 +00:00
|
|
|
|
2016-11-28 12:18:06 +00:00
|
|
|
- name: Check netchecker status
|
2019-05-16 07:27:43 +00:00
|
|
|
uri:
|
|
|
|
url: "http://{{ ansible_default_ipv4.address }}:{{ netchecker_port }}/api/v1/connectivity_check"
|
|
|
|
status_code: 200
|
|
|
|
return_content: yes
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2016-11-28 12:18:06 +00:00
|
|
|
run_once: true
|
2022-03-18 01:05:39 +00:00
|
|
|
register: connectivity_check
|
2016-11-28 12:18:06 +00:00
|
|
|
retries: 3
|
|
|
|
delay: "{{ agent_report_interval }}"
|
2022-03-18 01:05:39 +00:00
|
|
|
until: connectivity_check.content|length > 0 and
|
|
|
|
connectivity_check.content[0] == '{'
|
|
|
|
no_log: false
|
2016-12-27 11:38:54 +00:00
|
|
|
failed_when: false
|
2018-10-20 11:56:55 +00:00
|
|
|
when:
|
|
|
|
- agents.content != '{}'
|
2016-11-28 12:18:06 +00:00
|
|
|
|
2021-07-12 07:00:47 +00:00
|
|
|
- debug: # noqa unnamed-task
|
2019-05-16 07:27:43 +00:00
|
|
|
var: ncs_pod
|
2019-01-25 16:14:22 +00:00
|
|
|
run_once: true
|
|
|
|
|
2019-05-16 07:27:43 +00:00
|
|
|
- name: Get kube-proxy logs
|
|
|
|
command: "{{ bin_dir }}/kubectl -n kube-system logs -l k8s-app=kube-proxy"
|
2019-01-25 16:14:22 +00:00
|
|
|
no_log: false
|
2020-05-01 06:38:05 +00:00
|
|
|
when:
|
2021-03-24 00:26:05 +00:00
|
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
2022-03-18 01:05:39 +00:00
|
|
|
- not connectivity_check is success
|
2019-01-25 16:14:22 +00:00
|
|
|
|
2019-05-16 07:27:43 +00:00
|
|
|
- name: Get logs from other apps
|
|
|
|
command: "{{ bin_dir }}/kubectl -n kube-system logs -l k8s-app={{ item }} --all-containers"
|
2020-05-01 06:38:05 +00:00
|
|
|
when:
|
2021-03-24 00:26:05 +00:00
|
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
2022-03-18 01:05:39 +00:00
|
|
|
- not connectivity_check is success
|
2019-01-25 16:14:22 +00:00
|
|
|
no_log: false
|
|
|
|
with_items:
|
|
|
|
- kube-router
|
|
|
|
- flannel
|
|
|
|
- canal-node
|
|
|
|
- calico-node
|
|
|
|
- cilium
|
|
|
|
|
2022-03-18 01:05:39 +00:00
|
|
|
- name: Parse agents list
|
|
|
|
set_fact:
|
|
|
|
agents_check_result: "{{ agents.content | from_json }}"
|
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2016-11-28 12:18:06 +00:00
|
|
|
run_once: true
|
2019-01-25 16:14:22 +00:00
|
|
|
when:
|
2022-03-18 01:05:39 +00:00
|
|
|
- agents is success
|
|
|
|
- agents.content is defined
|
|
|
|
- agents.content[0] == '{'
|
2019-01-25 16:14:22 +00:00
|
|
|
|
2021-07-12 07:00:47 +00:00
|
|
|
- debug: # noqa unnamed-task
|
2022-03-18 01:05:39 +00:00
|
|
|
var: agents_check_result
|
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2019-01-25 16:14:22 +00:00
|
|
|
run_once: true
|
|
|
|
when:
|
2022-03-18 01:05:39 +00:00
|
|
|
- agents_check_result is defined
|
|
|
|
|
|
|
|
- name: Parse connectivity check
|
|
|
|
set_fact:
|
|
|
|
connectivity_check_result: "{{ connectivity_check.content | from_json }}"
|
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
|
|
|
run_once: true
|
|
|
|
when:
|
|
|
|
- connectivity_check is success
|
|
|
|
- connectivity_check.content is defined
|
|
|
|
- connectivity_check.content[0] == '{'
|
2016-12-15 09:28:03 +00:00
|
|
|
|
2021-07-12 07:00:47 +00:00
|
|
|
- debug: # noqa unnamed-task
|
2022-03-18 01:05:39 +00:00
|
|
|
var: connectivity_check_result
|
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2016-12-15 09:28:03 +00:00
|
|
|
run_once: true
|
2018-10-20 11:56:55 +00:00
|
|
|
when:
|
2022-03-18 01:05:39 +00:00
|
|
|
- connectivity_check_result is defined
|
|
|
|
|
|
|
|
- name: Check connectivity with all netchecker agents
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- agents_check_result is defined
|
|
|
|
- connectivity_check_result is defined
|
|
|
|
- agents_check_result.keys() | length > 0
|
|
|
|
- not connectivity_check_result.Absent
|
|
|
|
- not connectivity_check_result.Outdated
|
|
|
|
msg: "Connectivity check to netchecker agents failed"
|
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
|
|
|
run_once: true
|
2018-11-04 09:07:38 +00:00
|
|
|
|
|
|
|
- name: Create macvlan network conf
|
|
|
|
# We cannot use only shell: below because Ansible will render the text
|
|
|
|
# with leading spaces, which means the shell will never find the string
|
|
|
|
# EOF at the beginning of a line. We can avoid Ansible's unhelpful
|
|
|
|
# heuristics by using the cmd parameter like this:
|
|
|
|
shell:
|
|
|
|
cmd: |
|
|
|
|
cat <<EOF | {{ bin_dir }}/kubectl create -f -
|
|
|
|
apiVersion: "k8s.cni.cncf.io/v1"
|
|
|
|
kind: NetworkAttachmentDefinition
|
|
|
|
metadata:
|
|
|
|
name: macvlan-conf
|
|
|
|
spec:
|
|
|
|
config: '{
|
2020-05-06 18:13:09 +00:00
|
|
|
"cniVersion": "0.4.0",
|
2018-11-04 09:07:38 +00:00
|
|
|
"type": "macvlan",
|
|
|
|
"master": "eth0",
|
|
|
|
"mode": "bridge",
|
|
|
|
"ipam": {
|
|
|
|
"type": "host-local",
|
|
|
|
"subnet": "192.168.1.0/24",
|
|
|
|
"rangeStart": "192.168.1.200",
|
|
|
|
"rangeEnd": "192.168.1.216",
|
|
|
|
"routes": [
|
|
|
|
{ "dst": "0.0.0.0/0" }
|
|
|
|
],
|
|
|
|
"gateway": "192.168.1.1"
|
|
|
|
}
|
|
|
|
}'
|
|
|
|
EOF
|
|
|
|
when:
|
2021-03-24 00:26:05 +00:00
|
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
2020-06-03 07:00:17 +00:00
|
|
|
- kube_network_plugin_multus|default(false)|bool
|
2018-11-04 09:07:38 +00:00
|
|
|
|
|
|
|
- name: Annotate pod with macvlan network
|
|
|
|
# We cannot use only shell: below because Ansible will render the text
|
|
|
|
# with leading spaces, which means the shell will never find the string
|
|
|
|
# EOF at the beginning of a line. We can avoid Ansible's unhelpful
|
|
|
|
# heuristics by using the cmd parameter like this:
|
|
|
|
shell:
|
|
|
|
cmd: |
|
|
|
|
cat <<EOF | {{ bin_dir }}/kubectl create -f -
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
|
|
|
name: samplepod
|
|
|
|
annotations:
|
|
|
|
k8s.v1.cni.cncf.io/networks: macvlan-conf
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: samplepod
|
|
|
|
command: ["/bin/bash", "-c", "sleep 2000000000000"]
|
|
|
|
image: dougbtv/centos-network
|
|
|
|
EOF
|
|
|
|
when:
|
2021-03-24 00:26:05 +00:00
|
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
2020-06-03 07:00:17 +00:00
|
|
|
- kube_network_plugin_multus|default(false)|bool
|
2018-11-04 09:07:38 +00:00
|
|
|
|
2020-07-28 08:39:08 +00:00
|
|
|
- name: Check secondary macvlan interface
|
|
|
|
command: "{{ bin_dir }}/kubectl exec samplepod -- ip addr show dev net1"
|
2018-11-04 09:07:38 +00:00
|
|
|
register: output
|
|
|
|
until: output.rc == 0
|
|
|
|
retries: 90
|
|
|
|
changed_when: false
|
|
|
|
when:
|
2021-03-24 00:26:05 +00:00
|
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
2020-06-03 07:00:17 +00:00
|
|
|
- kube_network_plugin_multus|default(false)|bool
|