2019-04-20 13:11:40 +00:00
|
|
|
---
|
2021-03-24 00:26:05 +00:00
|
|
|
- hosts: kube_control_plane[0]
|
2019-04-20 13:11:40 +00:00
|
|
|
tasks:
|
|
|
|
|
2020-08-28 09:28:53 +00:00
|
|
|
- name: Force binaries directory for Flatcar Container Linux by Kinvolk
|
2019-04-20 13:11:40 +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"]
|
2019-04-20 13:11:40 +00:00
|
|
|
|
2019-05-16 07:27:43 +00:00
|
|
|
- name: Force binaries directory for other hosts
|
|
|
|
set_fact:
|
2019-04-20 13:11:40 +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"]
|
2019-04-20 13:11:40 +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-09-10 10:45:54 +00:00
|
|
|
- name: Check kubectl output
|
|
|
|
command: "{{ bin_dir }}/kubectl get pods --all-namespaces -owide"
|
2020-07-28 15:39:47 +00:00
|
|
|
changed_when: false
|
2019-04-20 13:11:40 +00:00
|
|
|
register: get_pods
|
|
|
|
no_log: true
|
|
|
|
|
2021-07-12 07:00:47 +00:00
|
|
|
- debug: # noqa unnamed-task
|
2019-05-16 07:27:43 +00:00
|
|
|
msg: "{{ get_pods.stdout.split('\n') }}"
|
2019-04-20 13:11:40 +00:00
|
|
|
|
2020-09-10 10:45:54 +00:00
|
|
|
- name: Check that all pods are running and ready
|
|
|
|
command: "{{ bin_dir }}/kubectl get pods --all-namespaces --no-headers -o yaml"
|
2020-07-28 15:39:47 +00:00
|
|
|
changed_when: false
|
2019-04-20 13:11:40 +00:00
|
|
|
register: run_pods_log
|
|
|
|
until:
|
|
|
|
# Check that all pods are running
|
|
|
|
- '(run_pods_log.stdout | from_yaml)["items"] | map(attribute = "status.phase") | unique | list == ["Running"]'
|
|
|
|
# Check that all pods are ready
|
|
|
|
- '(run_pods_log.stdout | from_yaml)["items"] | map(attribute = "status.containerStatuses") | map("map", attribute = "ready") | map("min") | min'
|
2019-07-21 19:24:51 +00:00
|
|
|
retries: 30
|
2019-04-20 13:11:40 +00:00
|
|
|
delay: 10
|
|
|
|
failed_when: false
|
|
|
|
no_log: true
|
|
|
|
|
2020-09-10 10:45:54 +00:00
|
|
|
- name: Check kubectl output
|
|
|
|
command: "{{ bin_dir }}/kubectl get pods --all-namespaces -owide"
|
2020-07-28 15:39:47 +00:00
|
|
|
changed_when: false
|
2019-04-20 13:11:40 +00:00
|
|
|
register: get_pods
|
|
|
|
no_log: true
|
|
|
|
|
2021-07-12 07:00:47 +00:00
|
|
|
- debug: # noqa unnamed-task
|
2019-05-16 07:27:43 +00:00
|
|
|
msg: "{{ get_pods.stdout.split('\n') }}"
|
2019-04-20 13:11:40 +00:00
|
|
|
failed_when: not run_pods_log is success
|