machine_setup/ansible/roles/kubernetes/tasks/linux.yaml
2022-12-01 23:38:21 -05:00

25 lines
479 B
YAML

- name: Build aur packages
register: buildaur
become_user: "{{ build_user.name }}"
command: "aurutils-sync --no-view {{ item }}"
args:
creates: "/var/cache/pacman/custom/{{ item }}-*.pkg.tar.*"
loop:
- kubeswitch
- name: Update cache
when: buildaur.changed
pacman:
name: []
state: present
update_cache: true
- name: Install packages
package:
name:
- yamllint
- stern
- kubectx
- kubeswitch
state: present