2018-10-21 07:35:52 +00:00
|
|
|
---
|
2021-03-24 00:26:05 +00:00
|
|
|
- name: kube-router | Add annotations on kube_control_plane
|
2022-01-05 10:26:32 +00:00
|
|
|
command: "{{ kubectl }} annotate --overwrite node {{ ansible_hostname }} {{ item }}"
|
2018-10-21 07:35:52 +00:00
|
|
|
with_items:
|
|
|
|
- "{{ kube_router_annotations_master }}"
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
|
|
|
when: kube_router_annotations_master is defined and inventory_hostname in groups['kube_control_plane']
|
2018-10-21 07:35:52 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
- name: kube-router | Add annotations on kube_node
|
2022-01-05 10:26:32 +00:00
|
|
|
command: "{{ kubectl }} annotate --overwrite node {{ ansible_hostname }} {{ item }}"
|
2018-10-21 07:35:52 +00:00
|
|
|
with_items:
|
|
|
|
- "{{ kube_router_annotations_node }}"
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2021-04-29 12:20:50 +00:00
|
|
|
when: kube_router_annotations_node is defined and inventory_hostname in groups['kube_node']
|
2018-10-21 07:35:52 +00:00
|
|
|
|
|
|
|
- name: kube-router | Add common annotations on all servers
|
2022-01-05 10:26:32 +00:00
|
|
|
command: "{{ kubectl }} annotate --overwrite node {{ ansible_hostname }} {{ item }}"
|
2018-10-21 07:35:52 +00:00
|
|
|
with_items:
|
|
|
|
- "{{ kube_router_annotations_all }}"
|
2021-03-24 00:26:05 +00:00
|
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
2021-04-29 12:20:50 +00:00
|
|
|
when: kube_router_annotations_all is defined and inventory_hostname in groups['k8s_cluster']
|