We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ef446db + e03385d commit 8cecc9aCopy full SHA for 8cecc9a
build/release-images.sh
@@ -31,7 +31,9 @@ if [[ "${KUBE_BUILD_CONFORMANCE}" =~ [yY] ]]; then
31
fi
32
33
# TODO(dims): Remove this when we get rid of hyperkube image
34
-CMD_TARGETS="${CMD_TARGETS} cmd/kubelet cmd/kubectl"
+if [[ "${KUBE_BUILD_HYPERKUBE}" =~ [yY] ]]; then
35
+ CMD_TARGETS=$(echo "${CMD_TARGETS} cmd/kubelet cmd/kubectl" | tr ' ' '\n' | sort | uniq | tr '\n' ' ')
36
+fi
37
38
kube::build::verify_prereqs
39
kube::build::build_image
0 commit comments