mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-06 05:43:29 +01:00
141b6f2018
Fix issue #25, check k3s_bind_address for readiness check Fix issue #24, become for tasks that require root
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
---
|
|
|
|
- name: Check to see if k3s-killall.sh exits
|
|
stat:
|
|
path: /usr/local/bin/k3s-killall.sh
|
|
register: check_k3s_killall_script
|
|
|
|
- name: Check to see if k3s-uninstall.sh exits
|
|
stat:
|
|
path: /usr/local/bin/k3s-uninstall.sh
|
|
register: check_k3s_uninstall_script
|
|
|
|
- name: Check to see if docker is present
|
|
command: which docker
|
|
failed_when: false
|
|
changed_when: false
|
|
register: check_k3s_docker_path
|
|
|
|
- name: Run k3s-killall.sh
|
|
command: /usr/local/bin/k3s-killall.sh
|
|
register: k3s_killall
|
|
changed_when: k3s_killall.rc == 0
|
|
when: check_k3s_killall_script.stat.exists
|
|
become: "{{ k3s_become_for_uninstall | ternary(true, false, k3s_become_for_all) }}"
|
|
|
|
- name: Run k3s-uninstall.sh
|
|
command: /usr/local/bin/k3s-uninstall.sh
|
|
args:
|
|
removes: /usr/local/bin/k3s-uninstall.sh
|
|
register: k3s_uninstall
|
|
changed_when: k3s_uninstall.rc == 0
|
|
when: check_k3s_uninstall_script.stat.exists
|
|
become: "{{ k3s_become_for_uninstall | ternary(true, false, k3s_become_for_all) }}"
|
|
|
|
- name: Clean up Docker
|
|
command: docker system prune -a --force
|
|
when: k3s_use_docker and check_k3s_docker_path.rc == 0
|