2021-10-01 02:50:30 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2021-05-08 06:00:09 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "multus-cni";
|
2023-09-05 14:40:57 +00:00
|
|
|
version = "4.0.2";
|
2021-05-08 06:00:09 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "k8snetworkplumbingwg";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-09-05 14:40:57 +00:00
|
|
|
sha256 = "sha256-Q6ACXOv1E3Ouki4ksdlUZFbWcDgo9xbCiTfEiVG5l18=";
|
2021-05-08 06:00:09 +00:00
|
|
|
};
|
|
|
|
|
2021-10-01 02:50:30 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-X=gopkg.in/k8snetworkplumbingwg/multus-cni.v3/pkg/multus.version=${version}"
|
2021-05-08 06:00:09 +00:00
|
|
|
];
|
|
|
|
|
2023-09-05 14:40:57 +00:00
|
|
|
subPackages = [
|
|
|
|
"cmd/multus-daemon"
|
|
|
|
"cmd/multus-shim"
|
|
|
|
"cmd/multus"
|
|
|
|
"cmd/thin_entrypoint"
|
|
|
|
];
|
2021-05-08 06:00:09 +00:00
|
|
|
|
2023-04-09 17:09:44 +00:00
|
|
|
vendorHash = null;
|
2021-05-08 06:00:09 +00:00
|
|
|
|
2023-09-05 14:40:57 +00:00
|
|
|
doCheck = true;
|
2021-05-08 06:00:09 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2021-10-01 02:50:30 +00:00
|
|
|
description = "Multus CNI is a container network interface (CNI) plugin for Kubernetes that enables attaching multiple network interfaces to pods";
|
2021-05-08 06:00:09 +00:00
|
|
|
homepage = "https://github.com/k8snetworkplumbingwg/multus-cni";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
2023-09-05 14:40:57 +00:00
|
|
|
maintainers = with maintainers; [ onixie kashw2 ];
|
2021-10-01 02:50:30 +00:00
|
|
|
mainProgram = "multus";
|
2021-05-08 06:00:09 +00:00
|
|
|
};
|
|
|
|
}
|