mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-13 00:20:07 +01:00
90 lines
2.2 KiB
Nix
90 lines
2.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
removeReferencesTo,
|
|
which,
|
|
go,
|
|
makeWrapper,
|
|
rsync,
|
|
installShellFiles,
|
|
components ? [
|
|
"cmd/kubelet"
|
|
"cmd/kube-apiserver"
|
|
"cmd/kube-controller-manager"
|
|
"cmd/kube-proxy"
|
|
"cmd/kube-scheduler"
|
|
"test/e2e/e2e.test"
|
|
],
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "kubernetes";
|
|
version = "1.20.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubernetes";
|
|
repo = "kubernetes";
|
|
rev = "v${version}";
|
|
hash = "sha256-r9Clwr+87Ns4VXUW9F6cgks+LknY39ngbQgZ5UMZ0Vo=";
|
|
};
|
|
|
|
nativeBuildInputs = [removeReferencesTo makeWrapper which go rsync installShellFiles];
|
|
|
|
outputs = ["out" "man" "pause"];
|
|
|
|
patches = [./fixup-addonmanager-lib-path.patch];
|
|
|
|
postPatch = ''
|
|
# go env breaks the sandbox
|
|
substituteInPlace "hack/lib/golang.sh" \
|
|
--replace 'echo "$(go env GOHOSTOS)/$(go env GOHOSTARCH)"' 'echo "${go.GOOS}/${go.GOARCH}"'
|
|
|
|
substituteInPlace "hack/update-generated-docs.sh" --replace "make" "make SHELL=${stdenv.shell}"
|
|
# hack/update-munge-docs.sh only performs some tests on the documentation.
|
|
# They broke building k8s; disabled for now.
|
|
echo "true" > "hack/update-munge-docs.sh"
|
|
|
|
patchShebangs ./hack
|
|
'';
|
|
|
|
WHAT = lib.concatStringsSep " " ([
|
|
"cmd/kubeadm"
|
|
"cmd/kubectl"
|
|
]
|
|
++ components);
|
|
|
|
postBuild = ''
|
|
./hack/update-generated-docs.sh
|
|
(cd build/pause/linux && cc pause.c -o pause)
|
|
'';
|
|
|
|
installPhase = ''
|
|
for p in $WHAT; do
|
|
install -D _output/local/go/bin/''${p##*/} -t $out/bin
|
|
done
|
|
|
|
install -D build/pause/linux/pause -t $pause/bin
|
|
installManPage docs/man/man1/*.[1-9]
|
|
|
|
cp ${./mk-docker-opts.sh} $out/bin/mk-docker-opts.sh
|
|
|
|
for tool in kubeadm kubectl; do
|
|
for shell in bash zsh; do
|
|
$out/bin/$tool completion $shell > $tool.$shell
|
|
installShellCompletion $tool.$shell
|
|
done
|
|
done
|
|
'';
|
|
|
|
preFixup = ''
|
|
find $out/bin $pause/bin -type f -exec remove-references-to -t ${go} '{}' +
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Production-Grade Container Scheduling and Management";
|
|
license = licenses.asl20;
|
|
homepage = "https://kubernetes.io";
|
|
maintainers = with maintainers; [johanot offline saschagrunert];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|