change kube to docker and remove alpine

This commit is contained in:
2024-11-12 04:10:03 +05:30
parent 2467a1b129
commit 31e3749625

View File

@@ -1,5 +1,5 @@
--- ---
- hosts: kube,ungrouped - hosts: docker,ungrouped
become: true become: true
vars_files: vars_files:
- ../secret - ../secret
@@ -17,9 +17,5 @@
apt: apt:
autoremove: yes autoremove: yes
when: ansible_facts['os_family'] == "Debian" when: ansible_facts['os_family'] == "Debian"
- name: Update cache and upgrade packages on alpine
apk:
update_cache: yes
upgrade: yes
when: ansible_facts['os_family'] == "Alpine"