2020-12-01 21:06:04 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, removeReferencesTo
|
|
|
|
, which
|
|
|
|
, go
|
|
|
|
, makeWrapper
|
|
|
|
, rsync
|
|
|
|
, installShellFiles
|
|
|
|
|
2016-10-10 16:48:00 +00:00
|
|
|
, components ? [
|
|
|
|
"cmd/kubelet"
|
|
|
|
"cmd/kube-apiserver"
|
|
|
|
"cmd/kube-controller-manager"
|
|
|
|
"cmd/kube-proxy"
|
2018-03-30 23:16:32 +00:00
|
|
|
"cmd/kube-scheduler"
|
2017-09-08 23:59:33 +00:00
|
|
|
"test/e2e/e2e.test"
|
2016-10-10 16:48:00 +00:00
|
|
|
]
|
|
|
|
}:
|
|
|
|
|
2014-11-15 16:18:14 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "kubernetes";
|
2021-03-19 16:33:42 +00:00
|
|
|
version = "1.20.5";
|
2014-11-15 16:18:14 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-06-06 10:58:51 +00:00
|
|
|
owner = "kubernetes";
|
2014-11-15 16:18:14 +00:00
|
|
|
repo = "kubernetes";
|
2015-03-18 13:26:40 +00:00
|
|
|
rev = "v${version}";
|
2021-03-19 16:33:42 +00:00
|
|
|
sha256 = "sha256-RDaD7tlTtAucW8ido9FumKb5E9n6F9H8HwxQ9TPyOLk=";
|
2014-11-15 16:18:14 +00:00
|
|
|
};
|
|
|
|
|
2020-12-01 21:06:04 +00:00
|
|
|
nativeBuildInputs = [ removeReferencesTo makeWrapper which go rsync installShellFiles ];
|
2014-11-15 16:18:14 +00:00
|
|
|
|
2020-12-01 21:06:04 +00:00
|
|
|
outputs = [ "out" "man" "pause" ];
|
2015-06-08 11:10:32 +00:00
|
|
|
|
2021-01-13 19:10:04 +00:00
|
|
|
patches = [ ./fixup-addonmanager-lib-path.patch ];
|
|
|
|
|
2016-10-10 16:48:00 +00:00
|
|
|
postPatch = ''
|
2019-08-09 07:50:49 +00:00
|
|
|
# go env breaks the sandbox
|
|
|
|
substituteInPlace "hack/lib/golang.sh" \
|
|
|
|
--replace 'echo "$(go env GOHOSTOS)/$(go env GOHOSTARCH)"' 'echo "${go.GOOS}/${go.GOARCH}"'
|
|
|
|
|
2019-04-07 15:01:41 +00:00
|
|
|
substituteInPlace "hack/update-generated-docs.sh" --replace "make" "make SHELL=${stdenv.shell}"
|
2017-01-15 01:30:43 +00:00
|
|
|
# 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"
|
2016-12-11 14:04:00 +00:00
|
|
|
|
2015-04-25 12:18:05 +00:00
|
|
|
patchShebangs ./hack
|
|
|
|
'';
|
2014-11-23 00:27:04 +00:00
|
|
|
|
2020-12-01 21:06:04 +00:00
|
|
|
WHAT = lib.concatStringsSep " " ([
|
|
|
|
"cmd/kubeadm"
|
|
|
|
"cmd/kubectl"
|
|
|
|
] ++ components);
|
2016-10-10 16:48:00 +00:00
|
|
|
|
2016-12-11 14:04:00 +00:00
|
|
|
postBuild = ''
|
2019-04-07 15:01:41 +00:00
|
|
|
./hack/update-generated-docs.sh
|
2021-01-13 12:44:22 +00:00
|
|
|
(cd build/pause/linux && cc pause.c -o pause)
|
2016-12-11 14:04:00 +00:00
|
|
|
'';
|
2016-10-10 16:48:00 +00:00
|
|
|
|
2014-11-15 16:18:14 +00:00
|
|
|
installPhase = ''
|
2020-12-01 21:06:04 +00:00
|
|
|
for p in $WHAT; do
|
|
|
|
install -D _output/local/go/bin/''${p##*/} -t $out/bin
|
|
|
|
done
|
2016-10-10 16:48:00 +00:00
|
|
|
|
2021-01-13 12:44:22 +00:00
|
|
|
install -D build/pause/linux/pause -t $pause/bin
|
2020-12-01 21:06:04 +00:00
|
|
|
installManPage docs/man/man1/*.[1-9]
|
2016-12-11 13:56:25 +00:00
|
|
|
|
2021-01-13 19:10:04 +00:00
|
|
|
# Unfortunately, kube-addons-main.sh only looks for the lib file in either the current working dir
|
|
|
|
# or in /opt. We have to patch this for now.
|
|
|
|
substitute cluster/addons/addon-manager/kube-addons-main.sh $out/bin/kube-addons \
|
|
|
|
--subst-var out
|
|
|
|
|
|
|
|
chmod +x $out/bin/kube-addons
|
2017-09-01 10:08:11 +00:00
|
|
|
patchShebangs $out/bin/kube-addons
|
|
|
|
wrapProgram $out/bin/kube-addons --set "KUBECTL_BIN" "$out/bin/kubectl"
|
|
|
|
|
2021-01-13 19:10:04 +00:00
|
|
|
cp cluster/addons/addon-manager/kube-addons.sh $out/bin/kube-addons-lib.sh
|
|
|
|
|
2020-12-01 21:06:04 +00:00
|
|
|
for tool in kubeadm kubectl; do
|
|
|
|
installShellCompletion --cmd $tool \
|
|
|
|
--bash <($out/bin/$tool completion bash) \
|
|
|
|
--zsh <($out/bin/$tool completion zsh)
|
|
|
|
done
|
2014-11-15 16:18:14 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
2018-12-12 04:30:50 +00:00
|
|
|
find $out/bin $pause/bin -type f -exec remove-references-to -t ${go} '{}' +
|
2014-11-15 16:18:14 +00:00
|
|
|
'';
|
|
|
|
|
2020-12-01 21:06:04 +00:00
|
|
|
meta = with lib; {
|
2016-06-06 10:58:51 +00:00
|
|
|
description = "Production-Grade Container Scheduling and Management";
|
2014-11-15 16:18:14 +00:00
|
|
|
license = licenses.asl20;
|
2020-04-01 13:59:46 +00:00
|
|
|
homepage = "https://kubernetes.io";
|
2020-12-01 21:06:04 +00:00
|
|
|
maintainers = with maintainers; [ johanot offline saschagrunert ];
|
2017-03-10 18:31:05 +00:00
|
|
|
platforms = platforms.unix;
|
2014-11-15 16:18:14 +00:00
|
|
|
};
|
|
|
|
}
|