Skip to content

Commit 99a1cab

Browse files
committed
debug
1 parent 767fb39 commit 99a1cab

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

config/capz/manager_image_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ spec:
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

config/capz/manager_pull_policy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ spec:
88
spec:
99
containers:
1010
- name: manager
11-
imagePullPolicy: Always
11+
imagePullPolicy: IfNotPresent

scripts/ci-entrypoint.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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.
185185
wait_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.

0 commit comments

Comments
 (0)