Merge pull request #231228 from QJoly/kubefirst

kubefirst: init at 2.0.8
This commit is contained in:
Weijia Wang 2023-05-11 17:31:43 +03:00 committed by GitHub
commit 4b177b1dd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubefirst";
version = "2.0.8";
src = fetchFromGitHub {
owner = "kubefirst";
repo = pname;
rev = "v${version}";
hash = "sha256-JGseXRUehRuH1kuTfmkAJcfRN3vM0zN7K8pnOfJ0LAs=";
};
vendorHash = "sha256-Sc6HXJXkZ9vW6sxEKCTo6LDHeOGLTz0oN9JH11iUA/k=";
ldflags = [ "-s" "-w" "-X github.com/kubefirst/runtime/configs.K1Version=v${version}"];
doCheck = false;
meta = with lib; {
description = "The Kubefirst CLI creates instant GitOps platforms that integrate some of the best tools in cloud native from scratch.";
homepage = "https://github.com/kubefirst/kubefirst/";
license = licenses.mit;
maintainers = with maintainers; [ qjoly ];
};
}

View file

@ -31685,6 +31685,8 @@ with pkgs;
kubecfg = callPackage ../applications/networking/cluster/kubecfg { };
kubefirst = callPackage ../applications/networking/cluster/kubefirst { };
kube-score = callPackage ../applications/networking/cluster/kube-score { };
kubectl-evict-pod = callPackage ../applications/networking/cluster/kubectl-evict-pod {