File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 88 spec :
99 containers :
1010 # Change the value of image field below to your controller image URL
11- - image : gcr. io/k8s-staging- cluster-api-azure/cluster-api-azure- controller:main
11+ - image : jondev.azurecr. io/cluster-api-azure- controller-amd64:dev
1212 name : manager
Original file line number Diff line number Diff line change 88 spec :
99 containers :
1010 - name : manager
11- imagePullPolicy : Always
11+ imagePullPolicy : IfNotPresent
Original file line number Diff line number Diff line change @@ -183,6 +183,7 @@ wait_for_copy_kubeadm_config_map() {
183183
184184# wait_for_nodes returns when all nodes in the workload cluster are Ready.
185185wait_for_nodes () {
186+ set -x
186187 while (( WORKER_MACHINE_COUNT < TOTAL_WORKER_MACHINE_COUNT)) ; do
187188 WORKER_MACHINE_COUNT=$(( WORKER_MACHINE_COUNT + EXTRA_NODES_PER_SCALEOUT))
188189 WORKER_MACHINE_COUNT=$(( WORKER_MACHINE_COUNT > TOTAL_WORKER_MACHINE_COUNT ? TOTAL_WORKER_MACHINE_COUNT : WORKER_MACHINE_COUNT))
@@ -204,6 +205,7 @@ wait_for_nodes() {
204205 sleep 5
205206 done
206207 done
208+ set +x
207209}
208210
209211# wait_for_pods returns when all pods on the workload cluster are Running.
You can’t perform that action at this time.
0 commit comments