Update master_node_install.sh
This commit is contained in:
parent
b0d5105378
commit
1f6c897836
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue