Merge pull request #268352 from mausch/kubedock

kubedock: init at 0.14.1
This commit is contained in:
Peder Bergebakken Sundt 2023-11-20 22:40:11 +01:00 committed by GitHub
commit cebd3d5eff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubedock";
version = "0.14.1";
src = fetchFromGitHub {
owner = "joyrex2001";
repo = "kubedock";
rev = version;
hash = "sha256-xjt/RqvkOHTSTZwNgxmlUeYndPW9jwUE1knLyNXDxaE=";
};
vendorHash = "sha256-4X4v40c4J5SPwj53Zk+j+A9k0RkHGwqz128E+FnLr1c=";
# config.Build not defined as it would break r-ryantm
ldflags = [
"-s"
"-w"
"-X github.com/joyrex2001/kubedock/internal/config.Version=${version}"
];
CGO_ENABLED = 0;
meta = with lib; {
description = "Minimal implementation of the Docker API that will orchestrate containers on a Kubernetes cluster";
homepage = "https://github.com/joyrex2001/kubedock";
license = licenses.mit;
maintainers = with maintainers; [ mausch ];
mainProgram = "kubedock";
};
}

View File

@ -9885,6 +9885,8 @@ with pkgs;
buildGoModule = buildGo120Module;
};
kubedock = callPackage ../development/tools/kubedock { };
kubepug = callPackage ../development/tools/kubepug { };
kubeshark = callPackage ../applications/networking/cluster/kubeshark { };