Merge pull request #12832 from VannTen/cleanup/network_facts

network_facts: streamline set_fact and setup calls
This commit is contained in:
Kubernetes Prow Robot
2026-01-06 15:01:10 +05:30
committed by GitHub
4 changed files with 31 additions and 54 deletions

View File

@@ -1,7 +1,7 @@
---
- name: Kubeadm | Check api is up
uri:
url: "https://{{ ip | default(fallback_ip) }}:{{ kube_apiserver_port }}/healthz"
url: "https://{{ main_ip | ansible.utils.ipwrap }}:{{ kube_apiserver_port }}/healthz"
validate_certs: false
when: ('kube_control_plane' in group_names)
register: _result