Welcome to the v0.4.0 release of nix-snapshotter!
Highlights
- Satisfy gRPC forward-compatibility requirement introduced in newer versions of k8s.io/cri-api to unblock updating nix-snapshotter to work with latest k3s.
Migration guide v0.3.0 -> v0.4.0
- The NixOS k3s module now (as of 2024) accepts a list of strings for
extraFlags, so we've deprecated the unnecessarymoreFlagsoption.
# v0.3.0
services.k3s.moreFlags = [
"--container-runtime-endpoint unix:///run/containerd/containerd.sock"
];
# v0.4.0
services.k3s.extraFlags = [
"--container-runtime-endpoint unix:///run/containerd/containerd.sock"
];
Contributors
- Edgar Lee
- Joseph Goulden
- Joshua Perry
Dependency Changes
- None