good config!

This commit is contained in:
2024-01-13 18:26:23 +01:00
parent 1d60c61c30
commit 9335b69c74
23 changed files with 925 additions and 336 deletions

View File

@ -1,3 +1,3 @@
---
k3s_version: v1.27.6%2Bk3s1
k3s_version: v1.28.3%2Bk3s2
k3s_url: https://github.com/k3s-io/k3s/releases/download/{{ k3s_version }}/k3s-{{ arch | default('armhf') }}

View File

@ -1,3 +1,4 @@
---
- name: Add apt key
ansible.builtin.apt_key:
url: https://download.docker.com/linux/debian/gpg
@ -5,7 +6,7 @@
- name: Add docker-ce repository
apt_repository:
repo: deb [arch={{ arch | default('armhf') }}] https://download.docker.com/linux/debian {{ ansible_distribution_release }} stable
repo: deb [arch={{ arch | default('armhf') }}] https://download.docker.com/linux/debian bookworm stable
state: present
filename: 'docker'