From 88e49d14159c5a65e8da6ed610a4196336eb1f7a Mon Sep 17 00:00:00 2001 From: Francois Ferrand Date: Thu, 11 Apr 2024 09:48:17 +0200 Subject: [PATCH] Fix containerd setup Somehow the containerd config in the runner is broken, which may be related to the docker install. This can be fixed by resetting the config, as suggested in [1]. [1] https://serverfault.com/a/108911 Issue: PTFE-1367 --- .github/workflows/build.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9ea20a9..58725f3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -74,6 +74,10 @@ jobs: # Start cri-o service sudo systemctl start crio + + # Fix broken containerd setup + sudo containerd config default | sudo tee /etc/containerd/config.toml + sudo systemctl restart containerd # TODO: cache the installed image? - name: Downgrade Oras to 0.12.0