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-01-29 19:37:48 +08:00
|
|
|
- import_tasks: users-file.yml
|
2017-09-14 02:00:51 +08:00
|
|
|
when: kube_basic_auth|default(true)
|
|
|
|
|
2018-03-16 03:20:05 +08:00
|
|
|
- import_tasks: encrypt-at-rest.yml
|
|
|
|
when: kube_encrypt_secret_data
|
|
|
|
|
2018-07-30 17:55:25 +08:00
|
|
|
- name: install | Copy kubectl binary from download dir
|
|
|
|
command: rsync -piu "{{ local_release_dir }}/hyperkube" "{{ bin_dir }}/kubectl"
|
2017-10-26 04:19:40 +08:00
|
|
|
changed_when: false
|
|
|
|
tags:
|
|
|
|
- hyperkube
|
|
|
|
- kubectl
|
|
|
|
- upgrade
|
|
|
|
|
2018-07-30 17:55:25 +08:00
|
|
|
- name: install | Set kubectl binary permissions
|
|
|
|
file:
|
|
|
|
path: "{{ bin_dir }}/kubectl"
|
|
|
|
mode: "0755"
|
|
|
|
state: file
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- hyperkube
|
|
|
|
- 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
|
2016-11-14 16:22:46 +08:00
|
|
|
|
2017-01-18 01:36:58 +08:00
|
|
|
- name: Set kubectl bash completion file
|
|
|
|
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
|
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_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
|
|
|
|
|
2017-10-20 15:25:57 +08:00
|
|
|
- name: Include kubeadm setup if enabled
|
2018-01-29 19:37:48 +08:00
|
|
|
import_tasks: kubeadm-setup.yml
|
2017-09-14 02:00:51 +08:00
|
|
|
when: kubeadm_enabled|bool|default(false)
|
2017-06-27 12:27:25 +08:00
|
|
|
|
2017-10-20 15:25:57 +08:00
|
|
|
- name: Include static pod setup if not using kubeadm
|
2018-01-29 19:37:48 +08:00
|
|
|
import_tasks: static-pod-setup.yml
|
2017-09-14 02:00:51 +08:00
|
|
|
when: not kubeadm_enabled|bool|default(false)
|