| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 1.34.2 | 8 | ~amd64 ~arm64 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module systemd
DESCRIPTION="Kubernetes Node Agent"
HOMEPAGE="https://kubernetes.io"
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kubernetes-${PV}.tar.gz"
S=${WORKDIR}/kubernetes-${PV}
LICENSE="Apache-2.0"
# Dependent licenses
LICENSE+=" Apache-2.0 BSD BSD-2 ISC MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="selinux"
RESTRICT="test"
RDEPEND="selinux? ( sec-policy/selinux-kubernetes )"
BDEPEND=">=dev-lang/go-1.24.6"
QA_PRESTRIPPED=usr/bin/kubelet
src_compile() {
emake -j1 GOFLAGS="${GOFLAGS}" GOLDFLAGS="" LDFLAGS="" FORCE_HOST_GO=yes \
WHAT=cmd/${PN}
}
src_install() {
dobin _output/bin/${PN}
keepdir /etc/kubernetes/manifests /var/log/kubelet /var/lib/kubelet
newinitd "${FILESDIR}"/${PN}.initd ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
insinto /etc/logrotate.d
newins "${FILESDIR}"/${PN}.logrotated ${PN}
systemd_dounit "${FILESDIR}"/${PN}.service
insinto /etc/kubernetes
newins "${FILESDIR}"/${PN}.env ${PN}.env
}
selinux? ( sec-policy/selinux-kubernetes )
>=dev-lang/go-1.24.6
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | kubernetes-1.34.2.tar.gz | 38080420 bytes | https://github.com/kubernetes/kubernetes/archive/v1.34.2.tar.gz |