kfctl: init at 1.2.0
Update pkgs/applications/networking/cluster/kfctl/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
057515d569
commit
30ce6d8a0c
32
pkgs/applications/networking/cluster/kfctl/default.nix
Normal file
32
pkgs/applications/networking/cluster/kfctl/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "kfctl";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kubeflow";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-FY7o4QULobLY1djfcc2l6awE/v2stN7cc2lffMkjoPc=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-+6sxXp0LKegZjEFv1CIQ6xYh+hXLn+o9LggRYamCzpI=";
|
||||||
|
|
||||||
|
subPackages = [ "cmd/kfctl" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installShellCompletion --cmd eksctl \
|
||||||
|
--bash <($out/bin/kfctl completion bash) \
|
||||||
|
--zsh <($out/bin/kfctl completion zsh)
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A CLI for deploying and managing Kubeflow";
|
||||||
|
homepage = "https://github.com/kubeflow/kfctl";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ mvnetbiz ];
|
||||||
|
};
|
||||||
|
}
|
@ -6221,6 +6221,8 @@ in
|
|||||||
|
|
||||||
keystore-explorer = callPackage ../applications/misc/keystore-explorer { };
|
keystore-explorer = callPackage ../applications/misc/keystore-explorer { };
|
||||||
|
|
||||||
|
kfctl = callPackage ../applications/networking/cluster/kfctl { };
|
||||||
|
|
||||||
kibana6 = callPackage ../development/tools/misc/kibana/6.x.nix { };
|
kibana6 = callPackage ../development/tools/misc/kibana/6.x.nix { };
|
||||||
kibana6-oss = callPackage ../development/tools/misc/kibana/6.x.nix {
|
kibana6-oss = callPackage ../development/tools/misc/kibana/6.x.nix {
|
||||||
enableUnfree = false;
|
enableUnfree = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user