Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1592c8290d | |||
| 2c0e7245b6 |
@@ -49,6 +49,9 @@
|
||||
args:
|
||||
creates: $HOME/.kube/config
|
||||
|
||||
- name: Untaint control planes
|
||||
ansible.builtin.import_tasks: untaint.yaml
|
||||
|
||||
- name: Install Kubernetes CLI
|
||||
ansible.builtin.apt:
|
||||
pkg:
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
- name: Remove control plane NoSchedule taint from all nodes
|
||||
kubernetes.core.k8s_taint:
|
||||
state: absent
|
||||
name: "{{ inventory_hostname_short }}"
|
||||
taints:
|
||||
- key: node-role.kubernetes.io/control-plane
|
||||
effect: NoSchedule
|
||||
@@ -9,4 +9,7 @@
|
||||
release_namespace: kube-system
|
||||
chart_ref: metrics-server/metrics-server
|
||||
chart_version: 3.13.1
|
||||
values:
|
||||
args:
|
||||
- --kubelet-insecure-tls
|
||||
run_once: true
|
||||
|
||||
Reference in New Issue
Block a user