Fold kubernetes-apps/network_plugin into network_plugin (#12506)

For what I can see, there is no reason for the split, and it makes
things confusing.
This commit is contained in:
Max Gautier
2025-08-28 01:43:10 +00:00
committed by GitHub
parent 56c830713e
commit 84504d156f
12 changed files with 66 additions and 97 deletions

View File

@@ -15,3 +15,12 @@
- {name: ovn, file: cni-ovn.yml}
- {name: kube-ovn, file: cni-kube-ovn.yml}
register: kube_ovn_node_manifests
- name: Kube-OVN | Start Resources
kube:
name: "{{ item.item.name }}"
kubectl: "{{ bin_dir }}/kubectl"
filename: "{{ kube_config_dir }}/{{ item.item.file }}"
state: "latest"
with_items: "{{ kube_ovn_node_manifests.results }}"
when: inventory_hostname == groups['kube_control_plane'][0] and not item is skipped