2020-04-01 14:23:29 +00:00
|
|
|
---
|
2020-07-28 08:39:08 +00:00
|
|
|
- name: Generate dump folder
|
|
|
|
command: "{{ bin_dir }}/kubectl cluster-info dump --all-namespaces --output-directory /tmp/cluster-dump"
|
2020-04-01 14:23:29 +00:00
|
|
|
no_log: true
|
2021-03-24 00:26:05 +00:00
|
|
|
when: inventory_hostname in groups['kube_control_plane']
|
2020-04-01 14:23:29 +00:00
|
|
|
|
|
|
|
- name: Compress directory cluster-dump
|
|
|
|
archive:
|
|
|
|
path: /tmp/cluster-dump
|
|
|
|
dest: /tmp/cluster-dump.tgz
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0644
|
2021-03-24 00:26:05 +00:00
|
|
|
when: inventory_hostname in groups['kube_control_plane']
|
2020-04-01 14:23:29 +00:00
|
|
|
|
|
|
|
- name: Fetch dump file
|
|
|
|
fetch:
|
|
|
|
src: /tmp/cluster-dump.tgz
|
|
|
|
dest: "{{ lookup('env', 'CI_PROJECT_DIR') }}/cluster-dump/{{ inventory_hostname }}.tgz"
|
|
|
|
flat: true
|
2021-03-24 00:26:05 +00:00
|
|
|
when: inventory_hostname in groups['kube_control_plane']
|