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: templates/k8s.yaml
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -147,6 +147,14 @@ probes:
147
147
fi
148
148
hint: |
149
149
See "/var/log/cloud-init-output.log" in the guest
150
+
- description: "kubernetes images to be pulled"
151
+
script: |
152
+
#!/bin/bash
153
+
set -eux -o pipefail
154
+
if ! timeout 30s bash -c "images=\"$(kubeadm config images list)\"; until for image in \$images; do sudo crictl image -q \$image | grep -q sha256; done; do sleep 3; done"; then
0 commit comments