Error handing and execution issue fixed
[ealt-edge.git] / ocd / infra / playbooks / roles / helm / tasks / install.yml
index a138b32..38ac89a 100644 (file)
 - name: check whether helm is already installed
   command: which helm
   register: result
-  ignore_errors: 'True'
+  failed_when: false
+  no_log: True
+
+- debug:
+    msg: Helm is already present
+  when: result.rc == 0
+
+- meta: end_play
+  when: result.rc == 0
 
 - name: "Helm download command on x86_64"
   command: wget https://get.helm.sh/helm-v3.0.2-linux-amd64.tar.gz