kwok: init at 0.6.0 (#341012)

This commit is contained in:
Aleksana 2024-09-15 17:27:33 +08:00 committed by GitHub
commit 1f3227d4dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,29 @@
{
buildGoModule,
lib,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "kwok";
version = "0.6.0";
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = "kwok";
rev = "refs/tags/v${version}";
hash = "sha256-3g8enPxxh2SaxiDgDwJpAfSjv/iRoBRmTnXwDtuMdFA=";
};
vendorHash = "sha256-YVGXYN7PgGgBzxhx6piP3NHRAsR1/pCj97UWB21WNMg=";
doCheck = false; # docker is need for test
meta = {
description = "Simulate massive Kubernetes clusters with low resource usage locally without kubelet";
homepage = "https://kwok.sigs.k8s.io";
changelog = "https://github.com/kubernetes-sigs/kwok/releases/tag/v${version}";
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ bot-wxt1221 ];
};
}