2015-10-03 20:19:50 +00:00
|
|
|
---
|
2018-01-29 11:37:48 +00:00
|
|
|
- import_tasks: pre-upgrade.yml
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- k8s-pre-upgrade
|
2015-12-16 22:49:01 +00:00
|
|
|
|
2018-01-29 11:37:48 +00:00
|
|
|
- import_tasks: users-file.yml
|
2018-12-06 10:33:38 +00:00
|
|
|
when:
|
|
|
|
- kube_basic_auth|default(true)
|
2017-09-13 18:00:51 +00:00
|
|
|
|
2018-12-26 09:52:53 +00:00
|
|
|
- name: Create webhook token auth config
|
|
|
|
template:
|
|
|
|
src: webhook-token-auth-config.yaml.j2
|
|
|
|
dest: "{{ kube_config_dir }}/webhook-token-auth-config.yaml"
|
|
|
|
when: kube_webhook_token_auth|default(false)
|
|
|
|
|
2018-03-15 19:20:05 +00:00
|
|
|
- import_tasks: encrypt-at-rest.yml
|
2018-12-06 10:33:38 +00:00
|
|
|
when:
|
|
|
|
- kube_encrypt_secret_data
|
2018-03-15 19:20:05 +00:00
|
|
|
|
2018-12-06 10:33:38 +00:00
|
|
|
- name: Install | Copy kubectl binary from download dir
|
2018-09-16 02:50:56 +00:00
|
|
|
synchronize:
|
2019-11-28 13:41:03 +00:00
|
|
|
src: "{{ local_release_dir }}/kubectl-{{ kube_version }}-{{ image_arch }}"
|
2018-09-16 02:50:56 +00:00
|
|
|
dest: "{{ bin_dir }}/kubectl"
|
|
|
|
compress: no
|
|
|
|
perms: yes
|
|
|
|
owner: no
|
|
|
|
group: no
|
2017-10-25 20:19:40 +00:00
|
|
|
changed_when: false
|
2018-09-16 02:50:56 +00:00
|
|
|
delegate_to: "{{ inventory_hostname }}"
|
2017-10-25 20:19:40 +00:00
|
|
|
tags:
|
|
|
|
- kubectl
|
|
|
|
- upgrade
|
|
|
|
|
2018-07-30 09:55:25 +00:00
|
|
|
- name: install | Set kubectl binary permissions
|
|
|
|
file:
|
|
|
|
path: "{{ bin_dir }}/kubectl"
|
|
|
|
mode: "0755"
|
|
|
|
state: file
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- kubectl
|
|
|
|
- upgrade
|
2015-12-11 10:52:20 +00:00
|
|
|
|
2017-01-17 17:36:58 +00:00
|
|
|
- name: Install kubectl bash completion
|
|
|
|
shell: "{{ bin_dir }}/kubectl completion bash >/etc/bash_completion.d/kubectl.sh"
|
2018-07-30 09:55:25 +00:00
|
|
|
when: ansible_os_family in ["Debian","RedHat"]
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- kubectl
|
2019-08-05 01:15:48 +00:00
|
|
|
ignore_errors: True
|
2016-11-14 08:22:46 +00:00
|
|
|
|
2019-08-05 01:15:48 +00:00
|
|
|
- name: Set kubectl bash completion file permissions
|
2017-01-17 17:36:58 +00:00
|
|
|
file:
|
|
|
|
path: /etc/bash_completion.d/kubectl.sh
|
2016-11-14 08:22:46 +00:00
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0755
|
2017-01-17 17:36:58 +00:00
|
|
|
when: ansible_os_family in ["Debian","RedHat"]
|
2017-10-05 07:43:04 +00:00
|
|
|
tags:
|
|
|
|
- kubectl
|
|
|
|
- upgrade
|
2019-08-05 01:15:48 +00:00
|
|
|
ignore_errors: True
|
2016-11-14 08:22:46 +00:00
|
|
|
|
2018-08-22 16:16:13 +00:00
|
|
|
- name: Disable SecurityContextDeny admission-controller and enable PodSecurityPolicy
|
|
|
|
set_fact:
|
|
|
|
kube_apiserver_admission_control: "{{ kube_apiserver_admission_control | default([]) | difference(['SecurityContextDeny']) | union(['PodSecurityPolicy']) | unique }}"
|
|
|
|
kube_apiserver_enable_admission_plugins: "{{ kube_apiserver_enable_admission_plugins | difference(['SecurityContextDeny']) | union(['PodSecurityPolicy']) | unique }}"
|
|
|
|
when: podsecuritypolicy_enabled
|
|
|
|
|
2018-12-06 10:33:38 +00:00
|
|
|
- name: Include kubeadm setup
|
2018-01-29 11:37:48 +00:00
|
|
|
import_tasks: kubeadm-setup.yml
|
2019-06-20 18:12:51 +00:00
|
|
|
|
|
|
|
- name: Include kubeadm etcd extra tasks
|
|
|
|
include_tasks: kubeadm-etcd.yml
|
|
|
|
when: etcd_kubeadm_enabled
|
2019-09-09 17:33:20 +00:00
|
|
|
|
|
|
|
- name: Include kubeadm secondary server apiserver fixes
|
|
|
|
include_tasks: kubeadm-fix-apiserver.yml
|