Browse Source
Remove special case for PodNodeSelector
This is already handled by the previous task.
pull/11471/head
Max Gautier
3 months ago
Failed to extract signature
2 changed files with
1 additions and
9 deletions
-
roles/kubernetes/control-plane/tasks/kubeadm-setup.yml
-
roles/kubernetes/control-plane/vars/main.yaml
|
|
@ -122,15 +122,6 @@ |
|
|
|
- item in kube_apiserver_admission_plugins_needs_configuration |
|
|
|
loop: "{{ kube_apiserver_enable_admission_plugins }}" |
|
|
|
|
|
|
|
- name: Kubeadm | Configure default cluster podnodeslector |
|
|
|
template: |
|
|
|
src: "podnodeselector.yaml.j2" |
|
|
|
dest: "{{ kube_config_dir }}/admission-controls/podnodeselector.yaml" |
|
|
|
mode: "0640" |
|
|
|
when: |
|
|
|
- kube_apiserver_admission_plugins_podnodeselector_default_node_selector is defined |
|
|
|
- kube_apiserver_admission_plugins_podnodeselector_default_node_selector | length > 0 |
|
|
|
|
|
|
|
- name: Kubeadm | Check apiserver.crt SANs |
|
|
|
vars: |
|
|
|
apiserver_ips: "{{ apiserver_sans | map('ansible.utils.ipaddr') | reject('equalto', False) | list }}" |
|
|
|
|
|
@ -3,3 +3,4 @@ |
|
|
|
kube_apiserver_admission_plugins_needs_configuration: |
|
|
|
- EventRateLimit |
|
|
|
- PodSecurity |
|
|
|
- PodNodeSelector |