Hakwit added in edge
[eliot.git] / blueprints / iotgateway / playbooks / roles / helm / tasks / uninstall.yml
1 # Copyright 2020 Huawei Technologies Co., Ltd.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 ---
16 - name: check whether helm is installed before deleting
17   command: which helm
18   register: result
19   ignore_errors: yes
20   no_log: True
21
22 - debug:
23     msg: Uninstalling helm...
24   when: result.stdout != ""
25
26 - debug:
27     msg: Ignore Uninstall Log ,Helm not installed
28   when: result.stdout == ""
29
30 - name: "UNINSTALL: Helm Uninstall on x86_64"
31   command: rm -rf linux-amd64/helm
32   ignore_errors: yes
33   no_log: True
34   when: result is succeeded and ansible_architecture == 'x86_64'
35
36 - name: "UNINSTALL: Remove download helm file on x86_64"
37   command: rm ~/helm-v3.0.2-linux-amd64.tar.gz
38   ignore_errors: yes
39   no_log: True
40   when: result is succeeded and ansible_architecture == 'x86_64'
41
42 - name: "UNINSTALL: Helm Uninstall on aarch64"
43   command: rm -rf linux-arm64/helm
44   ignore_errors: yes
45   no_log: True
46   when: result is succeeded and ansible_architecture == 'aarch64'
47
48 - name: "UNINSTALL: Remove download helm file on aarch64"
49   command: rm helm-v3.0.2-linux-arm64.tar.gz
50   ignore_errors: yes
51   no_log: True
52   when: result is succeeded and ansible_architecture == 'aarch64'
53
54 - name: "UNINSTALL: Remove helm from bin"
55   command: rm /usr/local/bin/helm
56   ignore_errors: yes
57   no_log: True
58   when: result is succeeded