diff options
| author | 2026-05-19 15:21:19 +0100 | |
|---|---|---|
| committer | 2026-05-19 15:21:19 +0100 | |
| commit | 43a6778dc0b386f32290576478d62c60034ad16f (patch) | |
| tree | c6e754a8669e7bb729fb73c804003dea2de7f19b /remote-dev/README.md | |
| parent | 2fa5bfcb240552d7787911ae2c29e71c5058246a (diff) | |
| download | dotfiles-43a6778dc0b386f32290576478d62c60034ad16f.tar.gz dotfiles-43a6778dc0b386f32290576478d62c60034ad16f.tar.bz2 dotfiles-43a6778dc0b386f32290576478d62c60034ad16f.zip | |
feat(remote-dev): silence podman cgroups-v1 deprecation warning
Ubuntu 20.04 still defaults to cgroups v1; podman 5 emits a deprecation
warning on every single invocation. Flipping the host to v2 is a reboot
that affects every workload and only matters if we need rootless
--memory/--cpus, so just silence the warning via the documented
PODMAN_IGNORE_CGROUPSV1_WARNING env var on the home-manager side.
Diffstat (limited to 'remote-dev/README.md')
| -rw-r--r-- | remote-dev/README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/remote-dev/README.md b/remote-dev/README.md index 172be80..c6519a5 100644 --- a/remote-dev/README.md +++ b/remote-dev/README.md @@ -183,7 +183,9 @@ Verify: ```sh podman info | grep -E 'cgroupVersion|graphDriverName|networkBackend' # expected: graphDriverName: overlay, networkBackend: netavark -# cgroupVersion: v1 is fine — only blocks --memory/--cpus flags. +# cgroupVersion: v1 is fine — only blocks --memory/--cpus flags. The +# podman v5 deprecation warning is silenced by PODMAN_IGNORE_CGROUPSV1_WARNING, +# set in home.nix. podman run --rm docker.io/library/alpine echo hi ``` |
