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 8
8
spec :
9
9
containers :
10
10
# 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
12
12
name : manager
Original file line number Diff line number Diff line change 8
8
spec :
9
9
containers :
10
10
- 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() {
183
183
184
184
# wait_for_nodes returns when all nodes in the workload cluster are Ready.
185
185
wait_for_nodes () {
186
+ set -x
186
187
while (( WORKER_MACHINE_COUNT < TOTAL_WORKER_MACHINE_COUNT)) ; do
187
188
WORKER_MACHINE_COUNT=$(( WORKER_MACHINE_COUNT + EXTRA_NODES_PER_SCALEOUT))
188
189
WORKER_MACHINE_COUNT=$(( WORKER_MACHINE_COUNT > TOTAL_WORKER_MACHINE_COUNT ? TOTAL_WORKER_MACHINE_COUNT : WORKER_MACHINE_COUNT))
@@ -204,6 +205,7 @@ wait_for_nodes() {
204
205
sleep 5
205
206
done
206
207
done
208
+ set +x
207
209
}
208
210
209
211
# 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