X86 env issue fixed
[ealt-edge.git] / ocd / infra / playbooks / roles / helm / tasks / uninstall.yml
index ada76a3..08dfaf2 100644 (file)
@@ -1,4 +1,4 @@
-I# Copyright 2020 Huawei Technologies Co., Ltd.
+# Copyright 2020 Huawei Technologies Co., Ltd.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -13,27 +13,45 @@ I# Copyright 2020 Huawei Technologies Co., Ltd.
 # limitations under the License.
 
 ---
-- name: Helm Uninstall on x86_64
+- name: check whether helm is installed before deleting
+  command: which helm
+  register: result
+  ignore_errors: yes
+  no_log: True
+
+- debug:
+    msg: Uninstalling helm...
+  when: result.stdout != ""
+
+- debug:
+    msg: Ignore Uninstall Log ,Helm not installed
+  when: result.stdout == ""
+
+- name: "UNINSTALL: Helm Uninstall on x86_64"
   command: rm -rf linux-amd64/helm
+  ignore_errors: yes
+  no_log: True
   when: result is succeeded and ansible_architecture == 'x86_64'
 
-- name: Remove download helm file on x86_64
+- name: "UNINSTALL: Remove download helm file on x86_64"
   command: rm ~/helm-v3.0.2-linux-amd64.tar.gz
+  ignore_errors: yes
+  no_log: True
   when: result is succeeded and ansible_architecture == 'x86_64'
 
-- name: Helm Uninstall on aarch64
+- name: "UNINSTALL: Helm Uninstall on aarch64"
   command: rm -rf linux-arm64/helm
   ignore_errors: yes
   no_log: True
   when: result is succeeded and ansible_architecture == 'aarch64'
 
-- name: Remove download helm file on aarch64
+- name: "UNINSTALL: Remove download helm file on aarch64"
   command: rm helm-v3.0.2-linux-arm64.tar.gz
   ignore_errors: yes
   no_log: True
   when: result is succeeded and ansible_architecture == 'aarch64'
 
-- name: Remove helm from bin
+- name: "UNINSTALL: Remove helm from bin"
   command: rm /usr/local/bin/helm
   ignore_errors: yes
   no_log: True