mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-03-26 21:33:02 +00:00
K8s_taint new module SUMMARY k8s_taint - new module to apply/remove taints to/from nodes. ISSUE TYPE New Module Pull Request COMPONENT NAME k8s_taint Reviewed-by: Mike Graves <mgraves@redhat.com> Reviewed-by: Alina Buzachis <None> Reviewed-by: None <None> Reviewed-by: None <None>
17 lines
270 B
YAML
17 lines
270 B
YAML
---
|
|
- name: Prepare
|
|
hosts: localhost
|
|
connection: local
|
|
|
|
collections:
|
|
- kubernetes.core
|
|
|
|
tasks:
|
|
- name: Include drain.yml
|
|
include_tasks:
|
|
file: tasks/drain.yml
|
|
|
|
- name: Include taint.yml
|
|
include_tasks:
|
|
file: tasks/taint.yml
|