Merge "Add molecule tests for kubectl role"
[oom/offline-installer.git] / ansible / roles / application / tasks / install.yml
1 ---
2 - name: Helm init and upgrade
3   command: |
4      {{ helm_bin_dir }}/helm init
5      --upgrade
6      --skip-refresh
7   changed_when: true  # init is always changed type of action
8
9 # A correct way to implement this would be using --wait option in helm init invocation.
10 # However, it does not work due to https://github.com/helm/helm/issues/4031 (fixed in newer helm release)
11 - name: "Wait for helm upgrade to finish"
12   command: "{{ helm_bin_dir }}/helm version --tiller-connection-timeout 10"
13   register: result
14   until: result.rc == 0
15   delay: 10
16   retries: 12
17   changed_when: false  # for idempotency
18
19 - name: Get all helm repos
20   command: "{{ helm_bin_dir }}/helm repo list"
21   register: repos
22   changed_when: false  # for idempotency
23
24 - name: Remove stable repo
25   command: "{{ helm_bin_dir }}/helm repo remove stable"
26   changed_when: true  # when executed its a changed type of action
27   when: "'stable' in repos.stdout"
28
29 - name: Helm Serve
30   shell: "{{ helm_bin_dir }}/helm serve &"
31   async: 45
32   poll: 3  # wait 3sec to get a chance for some stderr
33   register: helm_serve
34   changed_when: "'address already in use' not in helm_serve.stderr"
35
36 - name: List helm repos
37   command: "{{ helm_bin_dir }}/helm repo list"
38   register: helm_repo_list
39   changed_when: false  # for idempotency
40   failed_when:
41     - helm_repo_list.rc > 0
42     - "'Error: no repositories to show' not in helm_repo_list.stderr"
43
44 - name: Helm Add Repo
45   command: "{{ helm_bin_dir }}/helm repo add {{ helm_repository_name | mandatory }} {{ helm_repository_url | mandatory }}"
46   when: "'local' not in helm_repo_list.stdout"
47   changed_when: true  # when executed its a changed type of action
48
49 - name: Build local helm repository
50   make:
51     chdir: "{{ app_helm_charts_infra_directory }}"
52     target: "{{ item }}"
53   loop: "{{ app_helm_build_targets }}"
54   environment:
55     PATH: "{{ helm_bin_dir }}:{{ ansible_env.PATH }}"
56
57 - name: Generate Helm application override file with custom role
58   include_role:
59     name: "{{ app_helm_override_role }}"
60   when: not app_skip_helm_override
61
62 - name: Check for deploy plugin presence
63   stat:
64     path: '{{ helm_home_dir.stdout }}/plugins/deploy/deploy.sh'
65   register: deploy_plugin_presence
66
67 - name: "Helm Install application {{ app_name }}"
68   command: >
69           {{ helm_bin_dir }}/helm
70           {{ 'deploy' if deploy_plugin_presence.stat.exists else 'install --name' }}
71           {{ app_helm_release_name }}
72           {{ helm_repository_name }}/{{ app_helm_chart_name }}
73           --namespace {{ app_kubernetes_namespace }}
74           {% if not app_skip_helm_override %} {% for arg in helm_overide_files %} {{ '-f ' + arg }} {% endfor %} {% endif %}
75           {% for arg in helm_extra_install_options %} {{ arg.opt }} {% endfor %}
76   changed_when: true  # when executed its a changed type of action
77   register: helm_install
78   failed_when: helm_install.stderr