Merge pull request #78451 from arnarg/adding-operator-sdk

operator-sdk: init at 0.18.2
This commit is contained in:
Timo Kaufmann 2020-07-07 23:41:30 +02:00 committed by GitHub
commit c6e47d5763
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 0 deletions

View file

@ -639,6 +639,12 @@
githubId = 1296771;
name = "Anders Riutta";
};
arnarg = {
email = "arnarg@fastmail.com";
github = "arnarg";
githubId = 1291396;
name = "Arnar Ingason";
};
arnoldfarkas = {
email = "arnold.farkas@gmail.com";
github = "arnoldfarkas";

View 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;
};
}

View file

@ -5797,6 +5797,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 { };