helm-dashboard: init at 1.3.1 (#231299)
* helm-dashboard: init at 1.3.1 Update pkgs/applications/networking/cluster/helm-dashboard/default.nix Co-authored-by: Bruno BELANYI <bruno@belanyi.fr> Explanation of why the tests are disabled * Update pkgs/applications/networking/cluster/helm-dashboard/default.nix --------- Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
8850ac82a3
commit
bec29a0327
2 changed files with 33 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "helm-dashboard";
|
||||||
|
version = "1.3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "komodorio";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-D9da40+DbU1EMdR/a4ahLtqlzwPdcHOiAJtPjKZ2Ehc=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-LJVL20CsDxaAJ/qS+2P7Pv/jhyRO6WAmhGLCR9CmQKE=";
|
||||||
|
|
||||||
|
# tests require internet access
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" "-X main.version=v${version}" ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A simplified way of working with Helm";
|
||||||
|
longDescription = ''
|
||||||
|
Helm Dashboard is an open-source project which offers a UI-driven way to view the installed Helm charts,
|
||||||
|
see their revision history and corresponding k8s resources.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/komodorio/helm-dashboard/";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
maintainers = with lib.maintainers; [ qjoly ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -38865,6 +38865,8 @@ with pkgs;
|
||||||
|
|
||||||
helmfile = callPackage ../applications/networking/cluster/helmfile { };
|
helmfile = callPackage ../applications/networking/cluster/helmfile { };
|
||||||
|
|
||||||
|
helm-dashboard = callPackage ../applications/networking/cluster/helm-dashboard { };
|
||||||
|
|
||||||
helmsman = callPackage ../applications/networking/cluster/helmsman { };
|
helmsman = callPackage ../applications/networking/cluster/helmsman { };
|
||||||
|
|
||||||
velero = callPackage ../applications/networking/cluster/velero { };
|
velero = callPackage ../applications/networking/cluster/velero { };
|
||||||
|
|
Loading…
Reference in a new issue