Error handing and execution issue fixed 74/3474/1
authorArvind Patel <arvind.patel@huawei.com>
Sun, 17 May 2020 19:05:13 +0000 (00:35 +0530)
committerArvind Patel <arvind.patel@huawei.com>
Sun, 17 May 2020 19:06:19 +0000 (00:36 +0530)
Change-Id: I1baf986dc43eafea7a1fb1276dd6716c19bd96ce

ocd/infra/playbooks/roles/helm/tasks/install.yml
ocd/infra/playbooks/roles/helm/tasks/uninstall.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
index 979df7e..3750518 100644 (file)
 - name: check whether helm is installed before deleting
   command: which helm
   register: result
-  ignore_errors: 'True'
+  failed_when: false
+  no_log: True
+
+- debug:
+   msg: Helm is not present
+  when: result.rc == 2
+
+- meta: end_play
+  when: result.rc == 2
 
 - name: Helm Uninstall on x86_64
   command: rm -rf linux-amd64/helm