6fa44458db
* Implement kubeadm init,join for Debian OS family (PoC) with the external etcd option set. * Make certs/tokens management optional and depending on the use_kubeadm var * Do not delegate static pods and config management to kubeadm and remove produced artifacts to be regenerated by ansible. * Add new set of system pods manifests templates based on that kubeadm produces by default and parametrize it by ansible vars * Fix apiserver container logging to follow 12-factor apps and scheduler/controller-manager logging setup Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
27 lines
956 B
YAML
27 lines
956 B
YAML
---
|
|
- include: pre-upgrade.yml
|
|
|
|
- name: Copy kubectl bash completion
|
|
copy:
|
|
src: kubectl_bash_completion.sh
|
|
dest: /etc/bash_completion.d/kubectl.sh
|
|
when: ansible_os_family in ["Debian","RedHat"]
|
|
|
|
- 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"
|
|
register: kube_task_result
|
|
until: kube_task_result.rc == 0
|
|
retries: 4
|
|
delay: "{{ retry_stagger | random + 3 }}"
|
|
changed_when: false
|
|
|
|
- include: system-pods.yml
|
|
when: ({{ not use_kubeadm|bool }})
|
|
|
|
# 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
|
|
|
|
- include: kubeadm-system-pods.yml
|
|
when: (ansible_os_family in ["Debian"]) and ({{ use_kubeadm|bool }})
|