Skip to content

Commit ca372d3

Browse files
authored
Merge pull request kubernetes#92422 from joakimr-axis/joakimr-axis_wait-until-stable
util.sh: Replace wait-until-stable with wait-until --stable
2 parents f7b79c4 + db9d6d0 commit ca372d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cluster/gce/util.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3033,7 +3033,7 @@ function create-linux-nodes() {
30333033
--base-instance-name "${extra_group_name}" \
30343034
--size "${num_additional}" \
30353035
--template "${extra_template_name}" || true;
3036-
gcloud compute instance-groups managed wait-until-stable \
3036+
gcloud compute instance-groups managed wait-until --stable \
30373037
"${extra_group_name}" \
30383038
--zone "${ZONE}" \
30393039
--project "${PROJECT}" \
@@ -3064,7 +3064,7 @@ function create-linux-nodes() {
30643064
--base-instance-name "${group_name}" \
30653065
--size "${this_mig_size}" \
30663066
--template "${template_name}" || true;
3067-
gcloud compute instance-groups managed wait-until-stable \
3067+
gcloud compute instance-groups managed wait-until --stable \
30683068
"${group_name}" \
30693069
--zone "${ZONE}" \
30703070
--project "${PROJECT}" \
@@ -3104,7 +3104,7 @@ function create-windows-nodes() {
31043104
--base-instance-name "${group_name}" \
31053105
--size "${this_mig_size}" \
31063106
--template "${template_name}" || true;
3107-
gcloud compute instance-groups managed wait-until-stable \
3107+
gcloud compute instance-groups managed wait-until --stable \
31083108
"${group_name}" \
31093109
--zone "${ZONE}" \
31103110
--project "${PROJECT}" \

0 commit comments

Comments
 (0)