Update master_node_install.sh

This commit is contained in:
RomanNum3ral 2026-03-27 22:32:22 +00:00
parent b0d5105378
commit 1f6c897836
1 changed files with 2 additions and 4 deletions

View File

@ -296,9 +296,8 @@ wait_for_system_pods() {
| length > 0
and all(
.[];
(
(.status.containerStatuses // []) | length
) > 0
(.status.phase == "Running")
and ((.status.containerStatuses // []) | length > 0)
and all(.status.containerStatuses[]; .ready == true)
)
' >/dev/null; do
@ -314,7 +313,6 @@ wait_for_system_pods() {
fi
done
# Give kube-proxy and service routing a moment to settle.
sleep 20
log "Waiting for bundled RKE2 addon deployments"