From e038f841ddc4ec39ae8227ccc8ef489f1c64a067 Mon Sep 17 00:00:00 2001 From: OldTyT Date: Mon, 26 Feb 2024 11:47:42 +0000 Subject: [PATCH] chore: add remote_src true in unpack helm --- tasks/installation_helm.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/installation_helm.yml b/tasks/installation_helm.yml index 6e0ab1c..da8c24c 100644 --- a/tasks/installation_helm.yml +++ b/tasks/installation_helm.yml @@ -1,5 +1,5 @@ --- -- name: Download helm binary +- name: Download helm get_url: url: "{{ k3s_helm_url }}" dest: "/tmp/helm-{{ k3s_helm_version }}.tar.gz" @@ -13,6 +13,7 @@ - name: Unpack Helm tarball unarchive: src: "/tmp/helm-{{ k3s_helm_version }}.tar.gz" + remote_src: yes dest: "{{ helm_unpack_directory.path }}" - name: Move Helm to the desired installation directory