operator-sdk: init at 0.18.2
Operator-sdk is a cli tool for scaffolding and building Kubernetes operators.
This commit is contained in:
parent
22dbb8ce47
commit
5458f54a83
33
pkgs/development/tools/operator-sdk/default.nix
Normal file
33
pkgs/development/tools/operator-sdk/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ buildGoModule, go, lib, fetchFromGitHub, makeWrapper }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "operator-sdk";
|
||||
version = "0.18.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "operator-framework";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "02vzxqbh4yw9yvr9cr43hyi0v4hzii4mdb8am41n5y71bcld73v8";
|
||||
};
|
||||
|
||||
vendorSha256 = "0kdbpm6phdcw1rcjggrdvc8hgs3hjc81545qh8jv6zwipmn89i1p";
|
||||
|
||||
subPackages = [ "cmd/operator-sdk" ];
|
||||
|
||||
buildInputs = [ go makeWrapper ];
|
||||
|
||||
# operator-sdk uses the go compiler at runtime
|
||||
allowGoReference = true;
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/operator-sdk --prefix PATH : ${lib.makeBinPath [ go ]}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "SDK for building Kubernetes applications. Provides high level APIs, useful abstractions, and project scaffolding.";
|
||||
homepage = "https://github.com/operator-framework/operator-sdk";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ arnarg ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
@ -5726,6 +5726,8 @@ in
|
||||
|
||||
oppai-ng = callPackage ../tools/misc/oppai-ng { };
|
||||
|
||||
operator-sdk = callPackage ../development/tools/operator-sdk { };
|
||||
|
||||
update-dotdee = with python3Packages; toPythonApplication update-dotdee;
|
||||
|
||||
update-resolv-conf = callPackage ../tools/networking/openvpn/update-resolv-conf.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user