Skip to content

Commit dff51f9

Browse files
authored
fix: wait for a bit longer for containerd to get ready, sometimes its slow (#8348)
1 parent 4fee5dc commit dff51f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

parts/linux/cloud-init/artifacts/cse_helpers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ waitForContainerdReady() {
665665
local ret=0
666666

667667
echo "Waiting for containerd to become ready..."
668-
retrycmd_if_failure 60 0.1 1 bash -c 'ctr version >/dev/null 2>&1'
668+
retrycmd_if_failure 120 0.1 1 bash -c 'ctr version >/dev/null 2>&1'
669669
ret=$?
670670
if [ "$ret" -ne 0 ]; then
671671
echo "containerd did not become ready"

0 commit comments

Comments
 (0)