Merge pull request #66720 from 00-matt/pkg-kubeless
kubeless: init at 1.0.4
This commit is contained in:
commit
a6292c8aef
@ -40,6 +40,12 @@
|
|||||||
See `./scripts/check-maintainer-github-handles.sh` for an example on how to work with this data.
|
See `./scripts/check-maintainer-github-handles.sh` for an example on how to work with this data.
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
|
"00-matt" = {
|
||||||
|
name = "Matt Smith";
|
||||||
|
email = "matt@offtopica.uk";
|
||||||
|
github = "00-matt";
|
||||||
|
githubId = 48835712;
|
||||||
|
};
|
||||||
"0x4A6F" = {
|
"0x4A6F" = {
|
||||||
email = "0x4A6F@shackspace.de";
|
email = "0x4A6F@shackspace.de";
|
||||||
name = "Joachim Ernst";
|
name = "Joachim Ernst";
|
||||||
|
28
pkgs/applications/networking/cluster/kubeless/default.nix
Normal file
28
pkgs/applications/networking/cluster/kubeless/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "kubeless";
|
||||||
|
version = "1.0.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kubeless";
|
||||||
|
repo = "kubeless";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1f5w6kn9rsaxx9nf6kzyjkzm3s9ycy1c8h78hb61v4x915xd3040";
|
||||||
|
};
|
||||||
|
modSha256 = "1pw4pwb8z2kq474jjipjdivlrin5zvw8d2if4317b0w0wyp6isgd";
|
||||||
|
|
||||||
|
subPackages = [ "cmd/kubeless" ];
|
||||||
|
|
||||||
|
buildFlagsArray = ''
|
||||||
|
-ldflags=-X github.com/kubeless/kubeless/pkg/version.Version=${version}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://kubeless.io";
|
||||||
|
description = "The Kubernetes Native Serverless Framework";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ "00-matt" ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -19145,6 +19145,8 @@ in
|
|||||||
|
|
||||||
kubectl = callPackage ../applications/networking/cluster/kubectl { };
|
kubectl = callPackage ../applications/networking/cluster/kubectl { };
|
||||||
|
|
||||||
|
kubeless = callPackage ../applications/networking/cluster/kubeless { };
|
||||||
|
|
||||||
k9s = callPackage ../applications/networking/cluster/k9s { };
|
k9s = callPackage ../applications/networking/cluster/k9s { };
|
||||||
|
|
||||||
fluxctl = callPackage ../applications/networking/cluster/fluxctl { };
|
fluxctl = callPackage ../applications/networking/cluster/fluxctl { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user