2020-03-19 11:09:14 +00:00
|
|
|
---
|
2021-03-24 00:26:05 +00:00
|
|
|
- hosts: kube_control_plane[0]
|
2020-03-19 11:09:14 +00:00
|
|
|
tasks:
|
|
|
|
|
2020-08-28 09:28:53 +00:00
|
|
|
- name: Force binaries directory for Flatcar Container Linux by Kinvolk
|
2020-03-19 11:09:14 +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"]
|
2020-03-19 11:09:14 +00:00
|
|
|
|
|
|
|
- name: Force binaries directory for other hosts
|
|
|
|
set_fact:
|
|
|
|
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"]
|
2020-03-19 11:09:14 +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 nodes"
|
2020-07-28 15:39:47 +00:00
|
|
|
changed_when: false
|
2020-03-19 11:09:14 +00:00
|
|
|
register: get_nodes
|
|
|
|
no_log: true
|
|
|
|
|
2021-07-12 07:00:47 +00:00
|
|
|
- debug: # noqa unnamed-task
|
2020-03-19 11:09:14 +00:00
|
|
|
msg: "{{ get_nodes.stdout.split('\n') }}"
|
|
|
|
|
2020-09-10 10:45:54 +00:00
|
|
|
- name: Check that all nodes are running and ready
|
|
|
|
command: "{{ bin_dir }}/kubectl get nodes --no-headers -o yaml"
|
2020-07-28 15:39:47 +00:00
|
|
|
changed_when: false
|
2020-03-19 11:09:14 +00:00
|
|
|
register: get_nodes_yaml
|
|
|
|
until:
|
|
|
|
# Check that all nodes are Status=Ready
|
|
|
|
- '(get_nodes_yaml.stdout | from_yaml)["items"] | map(attribute = "status.conditions") | map("items2dict", key_name="type", value_name="status") | map(attribute="Ready") | list | min'
|
|
|
|
retries: 30
|
2020-06-29 19:39:59 +00:00
|
|
|
delay: 10
|