Merge pull request #99563 from 06kellyjac/kube3d_discoverability
kube3d: increase discoverability
This commit is contained in:
commit
a5da6e5215
@ -1,28 +1,35 @@
|
|||||||
{ stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||||
|
|
||||||
|
let
|
||||||
|
k3sVersion = "1.19.3-k3s3";
|
||||||
|
in
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "kube3d";
|
pname = "kube3d";
|
||||||
version = "3.3.0";
|
version = "3.3.0";
|
||||||
k3sVersion = "1.19.3-k3s3";
|
|
||||||
|
|
||||||
excludedPackages = ''tools'';
|
excludedPackages = "tools";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "rancher";
|
owner = "rancher";
|
||||||
repo = "k3d";
|
repo = "k3d";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1pq5x4fyn98f01mzfjv335gx29c61zd85qc5vhx9rk27hi825ima";
|
sha256 = "1pq5x4fyn98f01mzfjv335gx29c61zd85qc5vhx9rk27hi825ima";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildFlagsArray = ''
|
vendorSha256 = null;
|
||||||
-ldflags=
|
|
||||||
-w -s
|
|
||||||
-X github.com/rancher/k3d/v3/version.Version=v${version}
|
|
||||||
-X github.com/rancher/k3d/v3/version.K3sVersion=v${k3sVersion}
|
|
||||||
'';
|
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
buildFlagsArray = [
|
||||||
|
"-ldflags="
|
||||||
|
"-w"
|
||||||
|
"-s"
|
||||||
|
"-X github.com/rancher/k3d/v3/version.Version=v${version}"
|
||||||
|
"-X github.com/rancher/k3d/v3/version.K3sVersion=v${k3sVersion}"
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
installShellCompletion --cmd k3d \
|
installShellCompletion --cmd k3d \
|
||||||
--bash <($out/bin/k3d completion bash) \
|
--bash <($out/bin/k3d completion bash) \
|
||||||
@ -30,13 +37,15 @@ buildGoModule rec {
|
|||||||
--zsh <($out/bin/k3d completion zsh)
|
--zsh <($out/bin/k3d completion zsh)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
vendorSha256 = null;
|
meta = with lib; {
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = "https://github.com/rancher/k3d";
|
homepage = "https://github.com/rancher/k3d";
|
||||||
description = "A helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container";
|
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.
|
||||||
|
'';
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ kuznero jlesquembre ngerstle jk ];
|
maintainers = with maintainers; [ kuznero jlesquembre ngerstle jk ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user