Add kubectl, k9s and fly software packages

This commit is contained in:
2025-09-05 03:41:04 +02:00
parent 0bafe17c05
commit 5275034379
6 changed files with 31 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
vars_files:
- debian.config.yml
- macos.config.yml
- common.config.yml
roles:
- role: roles/macos
tags: [macos]
@@ -10,3 +11,14 @@
- role: roles/debian
tags: [debian]
when: ansible_os_family == 'Debian'
tasks:
- name: Dump hostvars
tags: [never, dump]
debug:
var: hostvars[inventory_hostname]
- name: Ensure fly
tags: [packages]
get_url:
url: "{{ fly_url }}"
dest: "{{ lookup('env', 'HOME') }}/.local/bin/fly"
mode: "u=rwx,g=rx,o=rx"