2016-09-07 18:02:06 +00:00
---
2017-04-21 02:51:27 +00:00
- name : Helm | Make sure HELM_HOME directory exists
file : path={{ helm_home_dir }} state=directory
2017-03-17 11:56:25 +00:00
- name : Helm | Set up helm launcher
2017-11-03 07:09:24 +00:00
include : "install_{{ helm_deployment_type }}.yml"
2017-03-17 11:56:25 +00:00
2017-06-27 04:27:25 +00:00
- name : Helm | Lay Down Helm Manifests (RBAC)
template :
src : "{{item.file}}"
dest : "{{kube_config_dir}}/{{item.file}}"
with_items :
- {name: tiller, file: tiller-sa.yml, type : sa}
- {name: tiller, file: tiller-clusterrolebinding.yml, type : clusterrolebinding}
register : manifests
when : dns_mode != 'none' and inventory_hostname == groups['kube-master'][0] and rbac_enabled
- name : Helm | Apply Helm Manifests (RBAC)
kube :
name : "{{item.item.name}}"
namespace : "{{ system_namespace }}"
kubectl : "{{bin_dir}}/kubectl"
resource : "{{item.item.type}}"
filename : "{{kube_config_dir}}/{{item.item.file}}"
2017-09-05 05:23:12 +00:00
state : "latest"
2017-06-27 04:27:25 +00:00
with_items : "{{ manifests.results }}"
when : dns_mode != 'none' and inventory_hostname == groups['kube-master'][0] and rbac_enabled
2017-03-17 11:56:25 +00:00
- name : Helm | Install/upgrade helm
2017-05-08 07:27:06 +00:00
command : "{{ bin_dir }}/helm init --upgrade --tiller-image={{ tiller_image_repo }}:{{ tiller_image_tag }}"
2017-11-03 07:09:24 +00:00
when : (helm_container is defined and helm_container.changed) or (helm_task_result is defined and helm_task_result.changed)
2017-03-17 11:56:25 +00:00
2017-06-27 04:27:25 +00:00
- name : Helm | Patch tiller deployment for RBAC
2017-09-18 17:43:44 +00:00
command : "{{bin_dir}}/kubectl patch deployment tiller-deploy -p '{\"spec\":{\"template\":{\"spec\":{\"serviceAccount\":\"tiller\"}}}}' -n {{ system_namespace }}"
2017-06-27 04:27:25 +00:00
when : rbac_enabled
2017-03-17 11:56:25 +00:00
- name : Helm | Set up bash completion
2017-06-19 06:33:50 +00:00
shell : "umask 022 && {{ bin_dir }}/helm completion bash >/etc/bash_completion.d/helm.sh"
2017-11-03 07:09:24 +00:00
when : (helm_container is defined and helm_container.changed) or (helm_task_result is defined and helm_task_result.changed) and not ansible_os_family in ["CoreOS", "Container Linux by CoreOS"]