operator-sdk: init at 0.18.2

Operator-sdk is a cli tool for scaffolding and building Kubernetes
operators.
This commit is contained in:
Arnar Gauti Ingason 2020-01-25 00:07:53 +00:00
parent 22dbb8ce47
commit 5458f54a83
2 changed files with 35 additions and 0 deletions

@ -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 { };