kubernetes: package kube-proxy separately

kube-proxy is required on all kubernetes nodes. Rather than it being
in the catch-all package, we put it in an explicit package.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
This commit is contained in:
Bruce Ashfield 2018-01-16 13:42:04 -05:00
parent d00a92ac19
commit 036e5f00d8

View File

@ -16,6 +16,7 @@ DEPENDS += "rsync-native \
PACKAGES =+ "kubeadm"
PACKAGES =+ "kubectl"
PACKAGES =+ "kubelet"
PACKAGES =+ "kube-proxy"
ALLOW_EMPTY_${PN} = "1"
@ -90,6 +91,7 @@ SYSTEMD_AUTO_ENABLE_kubelet = "enable"
FILES_kubeadm = "${bindir}/kubeadm ${systemd_unitdir}/system/kubelet.service.d/*"
FILES_kubectl = "${bindir}/kubectl"
FILES_kube-proxy = "${bindir}/kube-proxy"
FILES_kubelet = "${bindir}/kubelet ${systemd_unitdir}/system/kubelet.service ${sysconfdir}/kubernetes/manifests/"
INHIBIT_PACKAGE_STRIP = "1"