ansible-role-k3s/tasks
James D. Marble 044ed5512c Use correct checksums for arm downloads
I attempted to install on arm64 and armhf. Both fail because the
[checksum filter](e07903a5cf/tasks/build/download-k3s.yml (L21))
finds the first line with "k3s". On the arm checksum files,
the first lines are for "k3s-airgap-images-arm64.tar" and "k3s-airgap-images-arm.tar"
so the wrong checksum is grabbed.

I attempted to fix this with a more specific filter:
`select('search', 'k3s'+k3s_arch_suffix)`.
This works for both arm architectures,
but fails for amd64 because the key is simply "k3s" and not "k3s-amd64".

The solution I settled on is not ideal for future proofing,
but works for now at least.
2020-01-31 21:10:55 -08:00
..
build Use correct checksums for arm downloads 2020-01-31 21:10:55 -08:00
operate Added some validation steps, fixed issue with checksum, introducing rootless 2019-12-22 18:54:25 +00:00
validate Testing auto-deploy on multi-master 2020-01-13 21:32:31 +00:00
main.yml Added new state "downloaded" - improved getting latest version 2019-12-28 15:50:17 +00:00
state-downloaded.yml Added new state "downloaded" - improved getting latest version 2019-12-28 15:50:17 +00:00
state-installed.yml Fixed issue with SUSE docker installation 2020-01-21 22:33:11 +00:00
state-restarted.yml Build-operate workflow trial - allow for stop-starting cluster. 2019-12-20 19:41:20 +00:00
state-started.yml Build-operate workflow trial - allow for stop-starting cluster. 2019-12-20 19:41:20 +00:00
state-stopped.yml Build-operate workflow trial - allow for stop-starting cluster. 2019-12-20 19:41:20 +00:00