3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/cluster/kube3d/default.nix

56 lines
1.7 KiB
Nix
Raw Normal View History

2021-10-06 05:38:02 +01:00
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, k3sVersion ? "1.22.2-k3s2" }:
2019-07-01 10:02:04 +01:00
buildGoModule rec {
2019-07-01 10:02:04 +01:00
pname = "kube3d";
2021-12-30 18:21:25 +00:00
version = "5.2.2";
2019-07-01 10:02:04 +01:00
src = fetchFromGitHub {
owner = "rancher";
repo = "k3d";
rev = "v${version}";
2021-12-30 18:21:25 +00:00
sha256 = "sha256-yOrxEY2UpupVmbDSAhgruTUOhNVAGCpSJsvzDEFFccw=";
2019-07-01 10:02:04 +01:00
};
vendorSha256 = null;
2020-07-23 02:03:06 +01:00
nativeBuildInputs = [ installShellFiles ];
excludedPackages = "\\(tools\\|docgen\\)";
2021-08-26 09:41:39 +01:00
ldflags =
2021-10-06 05:38:02 +01:00
let t = "github.com/rancher/k3d/v5/version"; in
2021-08-26 09:41:39 +01:00
[ "-s" "-w" "-X ${t}.Version=v${version}" "-X ${t}.K3sVersion=v${k3sVersion}" ];
doCheck = false;
2020-07-23 02:03:06 +01:00
postInstall = ''
installShellCompletion --cmd k3d \
--bash <($out/bin/k3d completion bash) \
--fish <($out/bin/k3d completion fish) \
--zsh <($out/bin/k3d completion zsh)
2020-07-23 02:03:06 +01:00
'';
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/k3d --help
2021-10-06 05:38:02 +01:00
$out/bin/k3d --version | grep -e "k3d version v${version}" -e "k3s version v${k3sVersion}"
runHook postInstallCheck
'';
meta = with lib; {
2019-07-01 10:02:04 +01:00
homepage = "https://github.com/rancher/k3d";
changelog = "https://github.com/rancher/k3d/blob/v${version}/CHANGELOG.md";
description = "A helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container - k3d";
longDescription = ''
k3s is the lightweight Kubernetes distribution by Rancher: rancher/k3s
k3d creates containerized k3s clusters. This means, that you can spin up a
multi-node k3s cluster on a single machine using docker.
'';
2019-07-01 10:02:04 +01:00
license = licenses.mit;
2022-01-11 18:49:07 +00:00
maintainers = with maintainers; [ kuznero jlesquembre ngerstle jk ricochet ];
2022-01-10 18:45:08 +00:00
platforms = platforms.linux ++ platforms.darwin;
2019-07-01 10:02:04 +01:00
};
}