Skip to content

Commit bfd20c9

Browse files
committed
Fix build break - Hyperkube image needs kubelet/kubectl
`make quick-release-images KUBE_BUILD_CONFORMANCE=n` was broken since we modified hyperkube to use actual binaries from a script. Temporarily build the two additional binaries needed until we remove hyperkube image completely. Added a TODO as a reminder
1 parent 5b77616 commit bfd20c9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build/release-images.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ if [[ "${KUBE_BUILD_CONFORMANCE}" =~ [yY] ]]; then
3030
CMD_TARGETS="${CMD_TARGETS} ${KUBE_CONFORMANCE_IMAGE_TARGETS[*]}"
3131
fi
3232

33+
# TODO(dims): Remove this when we get rid of hyperkube image
34+
CMD_TARGETS="${CMD_TARGETS} cmd/kubelet cmd/kubectl"
35+
3336
kube::build::verify_prereqs
3437
kube::build::build_image
3538
kube::build::run_build_command make all WHAT="${CMD_TARGETS}" KUBE_BUILD_PLATFORMS="${KUBE_SERVER_PLATFORMS[*]}"

0 commit comments

Comments
 (0)