You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/ci-entrypoint.sh
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -112,10 +112,10 @@ create_cluster() {
112
112
}
113
113
114
114
wait_for_nodes() {
115
-
echo"Waiting for ${CONTROL_PLANE_MACHINE_COUNT} control plane machine(s) and ${WORKER_MACHINE_COUNT} worker machine(s) to become Ready"
115
+
echo"Waiting for ${CONTROL_PLANE_MACHINE_COUNT} control plane machine(s), ${WORKER_MACHINE_COUNT} worker machine(s), and ${WINDOWS_WORKER_MACHINE_COUNT} windows machine(s) to become Ready"
116
116
117
117
# Ensure that all nodes are registered with the API server before checking for readiness
118
-
local total_nodes="$((CONTROL_PLANE_MACHINE_COUNT + WORKER_MACHINE_COUNT))"
118
+
local total_nodes="$((CONTROL_PLANE_MACHINE_COUNT + WORKER_MACHINE_COUNT+ WINDOWS_WORKER_MACHINE_COUNT))"
119
119
while [[ $("${KUBECTL}" get nodes -ojson | jq '.items | length')-ne"${total_nodes}" ]];do
0 commit comments