ultrabirb-cluster/ansible/tasks/apt.yaml

45 lines
718 B
YAML
Raw Normal View History

2021-11-08 03:32:56 +01:00
- name: "Remove ubuntu stuff"
apt:
state: absent
name: ubutu-server
autoremove: yes
- name: "Install my favourite applications"
apt:
2021-11-12 00:36:16 +01:00
update_cache: true
2021-11-08 03:32:56 +01:00
state: present
name:
- tmux
- htop
- dnsutils
- needrestart
- curl
- wget
- netcat-openbsd
- tree
- net-tools
- nano
- psmisc
- python3
- python3-venv
- strace
- ifstat
- tcpdump
- xxd
2021-11-29 21:24:32 +01:00
- git
- name: "Install longhorn deps"
apt:
update_cache: true
state: present
name:
- bash
- curl
- util-linux
- grep
- gawk
- open-iscsi
- nfs-common
- jq
2021-11-29 22:33:12 +01:00
when: inventory_hostname in groups["kubernetes"]