diff options
-rw-r--r-- | recipes-containers/kubernetes/kubernetes_git.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-containers/kubernetes/kubernetes_git.bb b/recipes-containers/kubernetes/kubernetes_git.bb index 044175eb..a742486c 100644 --- a/recipes-containers/kubernetes/kubernetes_git.bb +++ b/recipes-containers/kubernetes/kubernetes_git.bb | |||
@@ -112,14 +112,14 @@ do_install() { | |||
112 | 112 | ||
113 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 113 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
114 | install -d "${D}${BIN_PREFIX}${base_bindir}" | 114 | install -d "${D}${BIN_PREFIX}${base_bindir}" |
115 | install -m 755 "${WORKDIR}/k8s-init" "${D}${BIN_PREFIX}${base_bindir}" | 115 | install -m 755 "${UNPACKDIR}/k8s-init" "${D}${BIN_PREFIX}${base_bindir}" |
116 | 116 | ||
117 | install -d ${D}${sysconfdir}/sysctl.d | 117 | install -d ${D}${sysconfdir}/sysctl.d |
118 | install -m 0644 "${WORKDIR}/99-kubernetes.conf" "${D}${sysconfdir}/sysctl.d" | 118 | install -m 0644 "${UNPACKDIR}/99-kubernetes.conf" "${D}${sysconfdir}/sysctl.d" |
119 | fi | 119 | fi |
120 | } | 120 | } |
121 | 121 | ||
122 | CNI_NETWORKING_FILES ?= "${WORKDIR}/cni-containerd-net.conflist" | 122 | CNI_NETWORKING_FILES ?= "${UNPACKDIR}/cni-containerd-net.conflist" |
123 | 123 | ||
124 | PACKAGES =+ "kubeadm kubectl kubelet kube-proxy ${PN}-misc ${PN}-host" | 124 | PACKAGES =+ "kubeadm kubectl kubelet kube-proxy ${PN}-misc ${PN}-host" |
125 | 125 | ||