From 7e38173d31a490ba0b86819650114a7692326416 Mon Sep 17 00:00:00 2001 From: kopwei Date: Wed, 2 Dec 2020 15:58:31 +0100 Subject: [PATCH] Correct repo path in downloading URL Fix #102, use k3s-io/k3s instead of rancher/k3s Signed-off-by: kopwei --- roles/download/tasks/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/download/tasks/main.yml b/roles/download/tasks/main.yml index 49e8de1..1450fd8 100644 --- a/roles/download/tasks/main.yml +++ b/roles/download/tasks/main.yml @@ -2,8 +2,8 @@ - name: Download k3s binary x64 get_url: - url: https://github.com/rancher/k3s/releases/download/{{ k3s_version }}/k3s - checksum: sha256:https://github.com/rancher/k3s/releases/download/{{ k3s_version }}/sha256sum-amd64.txt + 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 @@ -12,8 +12,8 @@ - name: Download k3s binary arm64 get_url: - url: https://github.com/rancher/k3s/releases/download/{{ k3s_version }}/k3s-arm64 - checksum: sha256:https://github.com/rancher/k3s/releases/download/{{ k3s_version }}/sha256sum-arm64.txt + url: https://github.com/k3s-io/k3s/releases/download/{{ k3s_version }}/k3s-arm64 + checksum: sha256:https://github.com/k3s-io/k3s/releases/download/{{ k3s_version }}/sha256sum-arm64.txt dest: /usr/local/bin/k3s owner: root group: root @@ -25,8 +25,8 @@ - name: Download k3s binary armhf get_url: - url: https://github.com/rancher/k3s/releases/download/{{ k3s_version }}/k3s-armhf - checksum: sha256:https://github.com/rancher/k3s/releases/download/{{ k3s_version }}/sha256sum-arm.txt + url: https://github.com/k3s-io/k3s/releases/download/{{ k3s_version }}/k3s-armhf + checksum: sha256:https://github.com/k3s-io/k3s/releases/download/{{ k3s_version }}/sha256sum-arm.txt dest: /usr/local/bin/k3s owner: root group: root