2015-10-04 04:19:50 +08:00
|
|
|
---
|
2018-01-29 19:37:48 +08:00
|
|
|
- import_tasks: pre-upgrade.yml
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- k8s-pre-upgrade
|
2015-12-17 06:49:01 +08:00
|
|
|
|
2018-12-26 17:52:53 +08: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)
|
|
|
|
|
2020-08-24 21:29:41 +08:00
|
|
|
- name: Create webhook authorization config
|
|
|
|
template:
|
|
|
|
src: webhook-authorization-config.yaml.j2
|
|
|
|
dest: "{{ kube_config_dir }}/webhook-authorization-config.yaml"
|
|
|
|
when: kube_webhook_authorization|default(false)
|
|
|
|
|
2018-03-16 03:20:05 +08:00
|
|
|
- import_tasks: encrypt-at-rest.yml
|
2018-12-06 18:33:38 +08:00
|
|
|
when:
|
|
|
|
- kube_encrypt_secret_data
|
2018-03-16 03:20:05 +08:00
|
|
|
|
2018-12-06 18:33:38 +08:00
|
|
|
- name: Install | Copy kubectl binary from download dir
|
2020-12-01 07:12:50 +08:00
|
|
|
copy:
|
2019-11-28 21:41:03 +08:00
|
|
|
src: "{{ local_release_dir }}/kubectl-{{ kube_version }}-{{ image_arch }}"
|
2018-09-16 10:50:56 +08:00
|
|
|
dest: "{{ bin_dir }}/kubectl"
|
2020-12-01 07:12:50 +08:00
|
|
|
mode: 0755
|
|
|
|
remote_src: true
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- kubectl
|
|
|
|
- upgrade
|
2015-12-11 18:52:20 +08:00
|
|
|
|
2017-01-18 01:36:58 +08:00
|
|
|
- name: Install kubectl bash completion
|
|
|
|
shell: "{{ bin_dir }}/kubectl completion bash >/etc/bash_completion.d/kubectl.sh"
|
2018-07-30 17:55:25 +08:00
|
|
|
when: ansible_os_family in ["Debian","RedHat"]
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- kubectl
|
2019-08-05 09:15:48 +08:00
|
|
|
ignore_errors: True
|
2016-11-14 16:22:46 +08:00
|
|
|
|
2019-08-05 09:15:48 +08:00
|
|
|
- name: Set kubectl bash completion file permissions
|
2017-01-18 01:36:58 +08:00
|
|
|
file:
|
|
|
|
path: /etc/bash_completion.d/kubectl.sh
|
2016-11-14 16:22:46 +08:00
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0755
|
2017-01-18 01:36:58 +08:00
|
|
|
when: ansible_os_family in ["Debian","RedHat"]
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- kubectl
|
|
|
|
- upgrade
|
2019-08-05 09:15:48 +08:00
|
|
|
ignore_errors: True
|
2016-11-14 16:22:46 +08:00
|
|
|
|
2018-08-23 00:16:13 +08:00
|
|
|
- name: Disable SecurityContextDeny admission-controller and enable PodSecurityPolicy
|
|
|
|
set_fact:
|
|
|
|
kube_apiserver_enable_admission_plugins: "{{ kube_apiserver_enable_admission_plugins | difference(['SecurityContextDeny']) | union(['PodSecurityPolicy']) | unique }}"
|
|
|
|
when: podsecuritypolicy_enabled
|
|
|
|
|
2018-12-06 18:33:38 +08:00
|
|
|
- name: Include kubeadm setup
|
2018-01-29 19:37:48 +08:00
|
|
|
import_tasks: kubeadm-setup.yml
|
2019-06-21 02:12:51 +08:00
|
|
|
|
|
|
|
- name: Include kubeadm etcd extra tasks
|
|
|
|
include_tasks: kubeadm-etcd.yml
|
|
|
|
when: etcd_kubeadm_enabled
|
2019-09-10 01:33:20 +08:00
|
|
|
|
|
|
|
- name: Include kubeadm secondary server apiserver fixes
|
|
|
|
include_tasks: kubeadm-fix-apiserver.yml
|
2021-03-09 15:55:00 +08:00
|
|
|
|
|
|
|
- name: Include kubelet client cert rotation fixes
|
|
|
|
include_tasks: kubelet-fix-client-cert-rotation.yml
|
|
|
|
when: kubelet_rotate_certificates
|
2021-03-23 02:22:48 +08:00
|
|
|
|
|
|
|
- name: Install script to renew K8S control plane certificates
|
|
|
|
template:
|
|
|
|
src: k8s-certs-renew.sh.j2
|
|
|
|
dest: "{{ bin_dir }}/k8s-certs-renew.sh"
|
|
|
|
mode: '755'
|
|
|
|
|
|
|
|
- name: Renew K8S control plane certificates monthly 1/2
|
|
|
|
template:
|
|
|
|
src: "{{ item }}.j2"
|
|
|
|
dest: "/etc/systemd/system/{{ item }}"
|
|
|
|
with_items:
|
|
|
|
- k8s-certs-renew.service
|
|
|
|
- k8s-certs-renew.timer
|
|
|
|
register: k8s_certs_units
|
|
|
|
when: auto_renew_certificates
|
|
|
|
|
|
|
|
- name: Renew K8S control plane certificates monthly 2/2
|
|
|
|
systemd:
|
|
|
|
name: k8s-certs-renew.timer
|
|
|
|
enabled: yes
|
|
|
|
state: started
|
|
|
|
daemon-reload: "{{ k8s_certs_units is changed }}"
|
|
|
|
when: auto_renew_certificates
|