2021-01-20 14:40:27 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, k3sVersion ? "1.20.0-k3s2" }:
|
2019-07-01 10:02:04 +01:00
|
|
|
|
2019-09-30 22:37:37 +01:00
|
|
|
buildGoModule rec {
|
2019-07-01 10:02:04 +01:00
|
|
|
pname = "kube3d";
|
2021-02-09 20:11:37 +00:00
|
|
|
version = "4.2.0";
|
2019-07-01 10:02:04 +01:00
|
|
|
|
2020-11-17 22:53:44 +00:00
|
|
|
excludedPackages = "tools";
|
2019-07-01 10:02:04 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-10-04 15:32:20 +01:00
|
|
|
owner = "rancher";
|
|
|
|
repo = "k3d";
|
|
|
|
rev = "v${version}";
|
2021-02-09 20:11:37 +00:00
|
|
|
sha256 = "sha256-R2RbQlceOD/uY3IdLLiM23gESh/oWnsiTWxHeH/Si18=";
|
2019-07-01 10:02:04 +01:00
|
|
|
};
|
|
|
|
|
2020-11-17 22:53:44 +00:00
|
|
|
vendorSha256 = null;
|
2019-09-30 22:37:37 +01:00
|
|
|
|
2020-07-23 02:03:06 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2020-10-26 09:20:30 +00:00
|
|
|
|
2020-11-17 22:53:44 +00:00
|
|
|
buildFlagsArray = [
|
|
|
|
"-ldflags="
|
|
|
|
"-w"
|
|
|
|
"-s"
|
2021-01-20 14:40:27 +00:00
|
|
|
"-X github.com/rancher/k3d/v4/version.Version=v${version}"
|
|
|
|
"-X github.com/rancher/k3d/v4/version.K3sVersion=v${k3sVersion}"
|
2020-11-17 22:53:44 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2020-07-23 02:03:06 +01:00
|
|
|
postInstall = ''
|
2020-11-10 13:39:08 +00:00
|
|
|
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
|
|
|
'';
|
|
|
|
|
2020-11-17 22:53:44 +00:00
|
|
|
meta = with lib; {
|
2019-07-01 10:02:04 +01:00
|
|
|
homepage = "https://github.com/rancher/k3d";
|
2020-10-04 15:46:48 +01:00
|
|
|
description = "A helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container - k3d";
|
2020-10-04 15:35:35 +01:00
|
|
|
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;
|
|
|
|
platforms = platforms.linux;
|
2020-10-22 12:44:18 +01:00
|
|
|
maintainers = with maintainers; [ kuznero jlesquembre ngerstle jk ];
|
2019-07-01 10:02:04 +01:00
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|