2015-10-03 20:19:50 +00:00
|
|
|
---
|
2016-07-08 09:59:21 +00:00
|
|
|
- include: pre-upgrade.yml
|
|
|
|
|
2015-12-16 22:49:01 +00:00
|
|
|
- name: Copy kubectl bash completion
|
|
|
|
copy:
|
|
|
|
src: kubectl_bash_completion.sh
|
|
|
|
dest: /etc/bash_completion.d/kubectl.sh
|
2016-02-19 17:48:53 +00:00
|
|
|
when: ansible_os_family in ["Debian","RedHat"]
|
2015-12-16 22:49:01 +00:00
|
|
|
|
2016-07-25 10:56:58 +00:00
|
|
|
- name: Copy kubectl from hyperkube container
|
|
|
|
command: "/usr/bin/docker run --rm -v {{ bin_dir }}:/systembindir {{ hyperkube_image_repo }}:{{ hyperkube_image_tag }} /bin/cp /hyperkube /systembindir/kubectl"
|
2016-09-13 12:36:01 +00:00
|
|
|
register: kube_task_result
|
|
|
|
until: kube_task_result.rc == 0
|
|
|
|
retries: 4
|
2016-09-15 09:23:27 +00:00
|
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
2016-01-22 15:37:07 +00:00
|
|
|
changed_when: false
|
2015-12-11 10:52:20 +00:00
|
|
|
|
2016-10-18 13:03:07 +00:00
|
|
|
- include: system-pods.yml
|
|
|
|
when: ({{ not use_kubeadm|bool }})
|
2016-01-22 13:25:33 +00:00
|
|
|
|
2016-10-18 13:03:07 +00:00
|
|
|
# TODO(bogdando) kubeadm init/update pods on RedHat/CoreOS
|
|
|
|
- include: kube-init.yml
|
|
|
|
when: (ansible_os_family in ["Debian"]) and ({{ use_kubeadm|bool }}) and (inventory_hostname == groups['kube-master'][0])
|
|
|
|
run_once: true
|
2015-12-11 10:52:20 +00:00
|
|
|
|
2016-10-18 13:03:07 +00:00
|
|
|
- include: kubeadm-system-pods.yml
|
|
|
|
when: (ansible_os_family in ["Debian"]) and ({{ use_kubeadm|bool }})
|