Error handing and execution issue fixed
[ealt-edge.git] / ocd / infra / playbooks / roles / helm / tasks / install.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 already installed
17   command: which helm
18   register: result
19   failed_when: false
20   no_log: True
21
22 - debug:
23     msg: Helm is already present
24   when: result.rc == 0
25
26 - meta: end_play
27   when: result.rc == 0
28
29 - name: "Helm download command on x86_64"
30   command: wget https://get.helm.sh/helm-v3.0.2-linux-amd64.tar.gz
31   when: result is failed and ansible_architecture == 'x86_64'
32
33 - name: "Untar helm on x86_64"
34   command: tar -zxvf helm-v3.0.2-linux-amd64.tar.gz
35   when: result is failed and ansible_architecture == 'x86_64'
36
37 - name: "Helm move to bin folder on x86_64"
38   command: mv linux-amd64/helm /usr/local/bin/
39   when: result is failed and ansible_architecture == 'x86_64'
40
41 - name: "Helm download command on aarch64"
42   command: wget https://get.helm.sh/helm-v3.0.2-linux-arm64.tar.gz
43   when: result is failed and ansible_architecture == 'aarch64'
44
45 - name: "Untar helm on aarch64"
46   command: tar -zxvf helm-v3.0.2-linux-arm64.tar.gz
47   when: result is failed and ansible_architecture == 'aarch64'
48
49 - name: "Helm move to bin folder on aarch64"
50   command: mv linux-arm64/helm /usr/local/bin/
51   when: result is failed and ansible_architecture == 'aarch64'
52
53 - name: "Add helm repo"
54 # yamllint disable rule:line-length
55   command: helm repo add stable https://kubernetes-charts.storage.googleapis.com/
56 # yamllint disable rule:line-length
57   when: result is failed
58
59 - name: "Updated helm repo"
60   command: helm repo update
61   when: result is failed
62
63 - name: "List helm repo"
64   command: helm repo list
65   when: result is failed