Skip to content

Commit

Permalink
Update k3s to v1.28.3+k3s2 (#209)
Browse files Browse the repository at this point in the history
* Update k3s to v1.28.3+k3s2

* Add support for downloading the checksum

---------

Co-authored-by: mkjpryor <[email protected]>
Co-authored-by: Matt Pryor <[email protected]>
  • Loading branch information
3 people authored Nov 29, 2023
1 parent c41a7c5 commit b6fe5ad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions roles/k3s/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---

k3s_repo: https://github.com/k3s-io/k3s
k3s_version: v1.24.7+k3s1
k3s_version: v1.28.3+k3s2
k3s_binary_url: "{{ k3s_repo }}/releases/download/{{ k3s_version }}/k3s"
k3s_binary_checksum: sha256:ec346c909f23b32f9ab7c3ccf5bfa74c89a0515191701ede83556345b70abdca
k3s_binary_checksum_url: "{{ k3s_repo }}/releases/download/{{ k3s_version }}/sha256sum-amd64.txt"
k3s_binary_checksum: "sha256:{{ lookup('url', k3s_binary_checksum_url, wantlist = True) | first | split | first }}"

# Settings for an additional block device that will hold the k3s state, if present
k3s_storage_device: /dev/sdb
Expand Down

0 comments on commit b6fe5ad

Please sign in to comment.