From 547ef747da96a9a22e2c17f3733c722402e06c71 Mon Sep 17 00:00:00 2001 From: ghostloda <78798447@qq.com> Date: Thu, 13 Oct 2022 14:55:01 +0800 Subject: [PATCH] fix helm install with password authentication (#9343) --- roles/kubernetes-apps/helm/tasks/main.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/roles/kubernetes-apps/helm/tasks/main.yml b/roles/kubernetes-apps/helm/tasks/main.yml index 107c22fb6..fee247b98 100644 --- a/roles/kubernetes-apps/helm/tasks/main.yml +++ b/roles/kubernetes-apps/helm/tasks/main.yml @@ -5,14 +5,11 @@ download: "{{ download_defaults | combine(downloads.helm) }}" - name: Helm | Copy helm binary from download dir - synchronize: + copy: src: "{{ local_release_dir }}/helm-{{ helm_version }}/linux-{{ image_arch }}/helm" dest: "{{ bin_dir }}/helm" - compress: no - perms: yes - owner: no - group: no - delegate_to: "{{ inventory_hostname }}" + mode: 0755 + remote_src: true - name: Helm | Get helm completion command: "{{ bin_dir }}/helm completion bash" -- GitLab