2018-03-16 10:14:39 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, removeReferencesTo, which, go_1_9, go-bindata, makeWrapper, rsync
|
2016-10-10 16:48:00 +00:00
|
|
|
, iptables, coreutils
|
|
|
|
, components ? [
|
2017-01-23 20:13:31 +00:00
|
|
|
"cmd/kubeadm"
|
2016-10-10 16:48:00 +00:00
|
|
|
"cmd/kubectl"
|
|
|
|
"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
|
|
|
]
|
|
|
|
}:
|
|
|
|
|
|
|
|
with lib;
|
2014-11-15 16:18:14 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "kubernetes-${version}";
|
2018-05-23 10:24:31 +00:00
|
|
|
version = "1.10.3";
|
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}";
|
2018-05-23 10:24:31 +00:00
|
|
|
sha256 = "1la9cdf5a67kg72xn4bn5mib1caiv5vxsjmnxqsmx0m7vhbv5i4n";
|
2014-11-15 16:18:14 +00:00
|
|
|
};
|
|
|
|
|
2018-03-30 23:16:32 +00:00
|
|
|
# go > 1.10 should be fixed by https://github.com/kubernetes/kubernetes/pull/60597
|
2018-03-16 10:14:39 +00:00
|
|
|
buildInputs = [ removeReferencesTo makeWrapper which go_1_9 rsync go-bindata ];
|
2014-11-15 16:18:14 +00:00
|
|
|
|
2016-12-11 14:04:00 +00:00
|
|
|
outputs = ["out" "man" "pause"];
|
2015-06-08 11:10:32 +00:00
|
|
|
|
2016-10-10 16:48:00 +00:00
|
|
|
postPatch = ''
|
2015-04-25 12:18:05 +00:00
|
|
|
substituteInPlace "hack/lib/golang.sh" --replace "_cgo" ""
|
2016-12-11 14:04:00 +00:00
|
|
|
substituteInPlace "hack/generate-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
|
|
|
|
2016-10-10 16:48:00 +00:00
|
|
|
WHAT="--use_go_build ${concatStringsSep " " components}";
|
|
|
|
|
2016-12-11 14:04:00 +00:00
|
|
|
postBuild = ''
|
|
|
|
./hack/generate-docs.sh
|
2017-03-10 18:31:05 +00:00
|
|
|
(cd build/pause && 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 = ''
|
2018-03-31 14:37:32 +00:00
|
|
|
mkdir -p "$out/bin" "$out/share/bash-completion/completions" "$out/share/zsh/site-functions" "$man/share/man" "$pause/bin"
|
2016-10-10 16:48:00 +00:00
|
|
|
|
|
|
|
cp _output/local/go/bin/* "$out/bin/"
|
2017-01-15 02:22:36 +00:00
|
|
|
cp build/pause/pause "$pause/bin/pause"
|
2016-10-10 16:48:00 +00:00
|
|
|
cp -R docs/man/man1 "$man/share/man"
|
2016-12-11 13:56:25 +00:00
|
|
|
|
2017-09-01 10:08:11 +00:00
|
|
|
cp cluster/addons/addon-manager/kube-addons.sh $out/bin/kube-addons
|
|
|
|
patchShebangs $out/bin/kube-addons
|
|
|
|
wrapProgram $out/bin/kube-addons --set "KUBECTL_BIN" "$out/bin/kubectl"
|
|
|
|
|
2016-12-11 13:56:25 +00:00
|
|
|
$out/bin/kubectl completion bash > $out/share/bash-completion/completions/kubectl
|
2018-03-31 14:37:32 +00:00
|
|
|
$out/bin/kubectl completion zsh > $out/share/zsh/site-functions/_kubectl
|
2014-11-15 16:18:14 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
2018-03-16 10:14:39 +00:00
|
|
|
find $out/bin $pause/bin -type f -exec remove-references-to -t ${go_1_9} '{}' +
|
2014-11-15 16:18:14 +00:00
|
|
|
'';
|
|
|
|
|
2016-10-10 16:48:00 +00:00
|
|
|
meta = {
|
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;
|
2018-05-01 03:03:23 +00:00
|
|
|
homepage = https://kubernetes.io;
|
2014-11-15 16:18:14 +00:00
|
|
|
maintainers = with maintainers; [offline];
|
2017-03-10 18:31:05 +00:00
|
|
|
platforms = platforms.unix;
|
2014-11-15 16:18:14 +00:00
|
|
|
};
|
|
|
|
}
|