Add rescue tasks for debugging
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
61d84177c0
commit
bd1b8d3482
@ -155,4 +155,13 @@
|
||||
K3S_TOKEN: "{{ cluster.token }}" # (hostvars[ansible_play_hosts[0]]).cluster.token
|
||||
K3S_URL: "{{ 'https://' + ( cluster.virtualip | ansible.utils.ipaddr('address') ) + ':6443' }}"
|
||||
|
||||
rescue:
|
||||
|
||||
- name: Debug systemd unit
|
||||
ansible.builtin.shell:
|
||||
cmd: systemctl status k3s -l --no-pager; journalctl -u k3s.service -b --nopager
|
||||
register: debug
|
||||
- ansible.builtin.debug:
|
||||
var: debug.stdout
|
||||
|
||||
when: inventory_hostname != ansible_play_hosts[0]
|
||||
|
Loading…
Reference in New Issue
Block a user