0def1fd560
Latest release of the 'helm schema' plugin: https://github.com/losisin/helm-values-schema-json/releases/tag/v2.2.1 Co-authored-by: Yiyu Zhou <yiyuzhou19@gmail.com> Co-authored-by: SuperSandro2000 <sandro.jaeckel@gmail.com>
22 lines
481 B
Nix
22 lines
481 B
Nix
{ callPackage }:
|
|
|
|
{
|
|
helm-cm-push = callPackage ./helm-cm-push.nix { };
|
|
|
|
helm-diff = callPackage ./helm-diff.nix { };
|
|
|
|
helm-dt = callPackage ./helm-dt.nix { };
|
|
|
|
helm-git = callPackage ./helm-git.nix { };
|
|
|
|
helm-mapkubeapis = callPackage ./helm-mapkubeapis.nix { };
|
|
|
|
helm-s3 = callPackage ./helm-s3.nix { };
|
|
|
|
helm-secrets = callPackage ./helm-secrets.nix { };
|
|
|
|
helm-schema = callPackage ./helm-schema.nix { };
|
|
|
|
helm-unittest = callPackage ./helm-unittest.nix { };
|
|
}
|