blob: 1cccf9adf8ee3451fecb8706a9c2b5d96928e9d5 [file] [log] [blame]
Tomas Levora5ea00a92018-12-19 14:36:36 +01001---
2- name: Helm init and upgrade
3 command: |
4 {{ helm_bin_dir }}/helm init
5 --upgrade
6 --skip-refresh
Michal Ptacek200ae722019-03-21 12:32:20 +00007 changed_when: true # init is always changed type of action
Tomas Levora5ea00a92018-12-19 14:36:36 +01008
Michal Ptacek11e2af52018-12-19 19:42:03 +00009#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
Michal Ptacek200ae722019-03-21 12:32:20 +000017 changed_when: false # for idempotency
Tomas Levora5ea00a92018-12-19 14:36:36 +010018
19- name: Get all helm repos
20 command: "{{ helm_bin_dir }}/helm repo list"
21 register: repos
Michal Ptacek200ae722019-03-21 12:32:20 +000022 changed_when: false # for idempotency
Tomas Levora5ea00a92018-12-19 14:36:36 +010023
24- name: Remove stable repo
25 command: "{{ helm_bin_dir }}/helm repo remove stable"
Michal Ptacek200ae722019-03-21 12:32:20 +000026 changed_when: true # when executed its a changed type of action
Tomas Levora5ea00a92018-12-19 14:36:36 +010027 when: "'stable' in repos.stdout"
28
29- name: Helm Serve
30 shell: "{{ helm_bin_dir }}/helm serve &"
31 async: 45
Michal Ptacek200ae722019-03-21 12:32:20 +000032 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"
Tomas Levora5ea00a92018-12-19 14:36:36 +010043
44- name: Helm Add Repo
45 command: "{{ helm_bin_dir }}/helm repo add {{ helm_repository_name }} {{ helm_repository_url }}"
Michal Ptacek200ae722019-03-21 12:32:20 +000046 when: "'local' not in helm_repo_list.stdout"
47 changed_when: true # when executed its a changed type of action
Tomas Levora5ea00a92018-12-19 14:36:36 +010048
Michal Ptacek271cf3f2019-01-17 20:39:46 +000049- name: Build local helm repository
Tomas Levora5ea00a92018-12-19 14:36:36 +010050 make:
Michal Ptacek11e2af52018-12-19 19:42:03 +000051 chdir: "{{ app_helm_charts_infra_directory }}"
Michal Ptacek271cf3f2019-01-17 20:39:46 +000052 target: "{{ item }}"
53 with_items: "{{ app_helm_build_targets }}"
Michal Ptacek11e2af52018-12-19 19:42:03 +000054 environment:
55 PATH: "{{ helm_bin_dir }}:{{ ansible_env.PATH }}"
Tomas Levora5ea00a92018-12-19 14:36:36 +010056
Michal Ptacek997057f2019-02-01 08:37:05 +000057- name: Register root certificate
58 slurp:
Samuli Silviuse9fca5e2019-03-03 13:34:16 +020059 src: "{{ playbook_dir }}/certs/rootCA.crt"
Michal Ptacek997057f2019-02-01 08:37:05 +000060 register: root_cert
61 delegate_to: localhost
62
63# WA: this is required because deploy plugin dont process params properly
64- name: Create override file with global.cacert
65 copy:
Michal Ptacek200ae722019-03-21 12:32:20 +000066 dest: "{{ app_data_path }}/override.yaml"
Michal Ptacek997057f2019-02-01 08:37:05 +000067 content: |
68 global:
Michal Ptacek04f2ca62019-02-15 12:58:57 +000069 cacert: |
Michal Ptacek997057f2019-02-01 08:37:05 +000070 {{ root_cert['content'] | b64decode | indent( width=4, indentfirst=False) }}
71
Michal Ptacekfabcad62019-02-04 06:38:08 +000072- name: Check for deploy plugin presence
73 stat:
Milan Verespej5f5aa012019-02-08 15:30:39 +010074 path: '{{ helm_home_dir.stdout }}/plugins/deploy/deploy.sh'
Michal Ptacekfabcad62019-02-04 06:38:08 +000075 register: deploy_plugin_presence
76
77- name: "Helm Install application {{ app_name }}"
78 command: >
79 {{ helm_bin_dir }}/helm
80 {{ 'deploy' if deploy_plugin_presence.stat.exists else 'install --name' }}
81 {{ app_helm_release_name }}
82 {{ helm_repository_name }}/{{ app_helm_chart_name }}
83 --namespace {{ app_kubernetes_namespace }}
Michal Ptacek997057f2019-02-01 08:37:05 +000084 -f {{ app_data_path }}/override.yaml
Michal Ptacek200ae722019-03-21 12:32:20 +000085 changed_when: true # when executed its a changed type of action
Milan Verespeja2e3a4c2019-03-29 12:50:40 +010086 register: helm_install
87 failed_when: helm_install.stderr