From debe80a2a18891c95b006e7c82292e151914d453 Mon Sep 17 00:00:00 2001 From: Danny Bessems Date: Fri, 7 Apr 2023 13:19:57 +0200 Subject: [PATCH] Fix url --- ansible/roles/assets/tasks/k3s.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/assets/tasks/k3s.yml b/ansible/roles/assets/tasks/k3s.yml index abe1f12..7b4c2c1 100644 --- a/ansible/roles/assets/tasks/k3s.yml +++ b/ansible/roles/assets/tasks/k3s.yml @@ -21,7 +21,7 @@ - name: Download K3s install script ansible.builtin.get_url: - url: https://github.com/k3s-io/k3s/blob/{{ platform.k3s.version }}/install.sh + url: https://raw.githubusercontent.com/k3s-io/k3s/{{ platform.k3s.version | urlencode }}/install.sh dest: /opt/metacluster/k3s/install.sh owner: root group: root