Added seed code for caas-lcm.
[ta/caas-lcm.git] / deploy / roles / helm_install / tasks / main.yml
1 ---
2 # Copyright 2019 Nokia
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 - name: helm-list
17   shell: HELM_HOST={{ caas.tiller_ip }}:{{ caas.tiller_port }} helm list --all | grep -i {{ release_name|lower }} | wc -l
18   register: list_result
19   until: list_result.stdout != 0
20   retries: 5
21   delay: 2
22
23 - pause:
24     seconds: 30
25
26 - name: set helm_install_set if undefined
27   set_fact:
28     helm_install_set: ""
29   when: ( helm_install_set is not defined ) or ( helm_install_set is none )    
30
31 - name: set helm_flags if undefined
32   set_fact:
33     helm_flags: ""
34   when: ( helm_flags is not defined ) or ( helm_flags is none )
35
36 - name: run helm install
37   shell: HELM_HOST={{ caas.tiller_ip }}:{{ caas.tiller_port }} helm install default/{{ chart_name }} --name {{ release_name|lower }} {{ helm_flags }} --wait --timeout {{ helm_operation_timeout }} {{ helm_install_set }}
38   register: helm_result
39
40
41 - name: print result
42   debug:
43     msg: "{{ helm_result.stdout }}"