machine_setup/ansible/roles/kubernetes/tasks/linux.yaml

25 lines
482 B
YAML
Raw Normal View History

- 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-bin
- name: Update cache
when: buildaur.changed
pacman:
name: []
state: present
update_cache: true
2022-12-02 04:38:21 +00:00
- name: Install packages
package:
name:
- yamllint
- stern
- kubeswitch-bin
2024-02-11 19:59:55 +00:00
- fluxcd
2022-12-02 04:38:21 +00:00
state: present