This commit is contained in:
DeveloperDurp 2026-02-06 05:15:41 -06:00
parent dff9d8f725
commit 7619911e35
17 changed files with 2339 additions and 0 deletions

View file

@ -0,0 +1,10 @@
---
- name: Download k3s binary x64
get_url:
url: https://github.com/k3s-io/k3s/releases/download/{{ k3s_version }}/k3s
checksum: sha256:https://github.com/k3s-io/k3s/releases/download/{{ k3s_version }}/sha256sum-amd64.txt
dest: /usr/local/bin/k3s
owner: root
group: root
mode: 0755
when: ansible_facts.architecture == "x86_64"