diff --git a/book/src/framework/components/troubleshooting.md b/book/src/framework/components/troubleshooting.md index 26eb81c31..eda56016e 100644 --- a/book/src/framework/components/troubleshooting.md +++ b/book/src/framework/components/troubleshooting.md @@ -36,6 +36,8 @@ This can happen due to `Docker Desktop` updates, the issue is that the symlink t #### Solution +Make sure you are not using `containerd` to store or pull images, see the [issue](https://github.com/google/cadvisor/issues/2838#issuecomment-2966600885) + Disable and enable the option `Allow the default Docker socket to be used` again to relink it properly. ![cadvisor_socket.png](../images/cadvisor_socket.png) diff --git a/framework/.changeset/v0.15.19.md b/framework/.changeset/v0.15.19.md new file mode 100644 index 000000000..7364c5023 --- /dev/null +++ b/framework/.changeset/v0.15.19.md @@ -0,0 +1 @@ +- add troubleshooting for containerd and cadvisor \ No newline at end of file diff --git a/framework/observability/compose/docker-compose.yaml b/framework/observability/compose/docker-compose.yaml index ee177d611..8a45f0b6e 100644 --- a/framework/observability/compose/docker-compose.yaml +++ b/framework/observability/compose/docker-compose.yaml @@ -33,9 +33,9 @@ services: container_name: cadvisor ports: - '8085:8080' + cgroup: host volumes: - /:/rootfs:ro - - /var/run:/var/run:ro - /sys:/sys:ro - /var/lib/docker/:/var/lib/docker:ro # Docker container data - /var/run/docker.sock:/var/run/docker.sock