c12s-kubespray/roles/kubernetes/master/tasks/main.yml

64 lines
1.6 KiB
YAML
Raw Normal View History

2015-10-03 20:19:50 +00:00
---
- import_tasks: pre-upgrade.yml
tags:
- k8s-pre-upgrade
- import_tasks: users-file.yml
when:
- kube_basic_auth|default(true)
- import_tasks: encrypt-at-rest.yml
when:
- kube_encrypt_secret_data
- name: Install | Copy kubectl binary from download dir
2018-09-16 02:50:56 +00:00
synchronize:
src: "{{ local_release_dir }}/hyperkube"
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:
- hyperkube
- 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
tags:
- hyperkube
- kubectl
- upgrade
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"]
tags:
- kubectl
2017-01-17 17:36:58 +00:00
- name: Set kubectl bash completion file
file:
path: /etc/bash_completion.d/kubectl.sh
owner: root
group: root
mode: 0755
2017-01-17 17:36:58 +00:00
when: ansible_os_family in ["Debian","RedHat"]
tags:
- kubectl
- upgrade
- 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
- name: Include kubeadm setup
import_tasks: kubeadm-setup.yml