Skip to content

nix-snapshotter v0.4.0

Latest

Choose a tag to compare

@elpdt852 elpdt852 released this 24 Feb 20:46
8e875fb

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 unnecessary moreFlags option.
# 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