helmfile-wrapped: init

nixos/doc/manual: add release notes for helmfile-wrapped
This commit is contained in:
Eric Bailey 2023-06-15 12:16:37 -05:00 committed by Eric Bailey
parent 27dab305a6
commit 8c068dfddb
2 changed files with 6 additions and 0 deletions

View file

@ -142,6 +142,8 @@ The module update takes care of the new config syntax and the data itself (user
- `programs.gnupg.agent.pinentryFlavor` is now set in `/etc/gnupg/gpg-agent.conf`, and will no longer take precedence over a `pinentry-program` set in `~/.gnupg/gpg-agent.conf`.
- `wrapHelm` now exposes `passthru.pluginsDir` which can be passed to `helmfile`. For convenience, a top-level package `helmfile-wrapped` has been added, which inherits `passthru.pluginsDir` from `kubernetes-helm-wrapped`. See [#217768](https://github.com/NixOS/nixpkgs/issues/217768) for details.
## Nixpkgs internals {#sec-release-23.11-nixpkgs-internals}
- The `qemu-vm.nix` module by default now identifies block devices via

View file

@ -39935,6 +39935,10 @@ with pkgs;
helmfile = callPackage ../applications/networking/cluster/helmfile { };
helmfile-wrapped = callPackage ../applications/networking/cluster/helmfile {
inherit (kubernetes-helm-wrapped.passthru) pluginsDir;
};
helm-dashboard = callPackage ../applications/networking/cluster/helm-dashboard { };
helmsman = callPackage ../applications/networking/cluster/helmsman { };