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.
1 parent 41f361a commit 163e2e7Copy full SHA for 163e2e7
hack/lib/build/binaries.sh
@@ -418,6 +418,11 @@ function os::build::make_openshift_binary_symlinks() {
418
ln -sf openshift "${OS_OUTPUT_BINPATH}/${platform}/${linkname}"
419
done
420
fi
421
+ if [[ -f "${OS_OUTPUT_BINPATH}/${platform}/oc" ]]; then
422
+ for linkname in "${OC_BINARY_COPY[@]}"; do
423
+ ln -sf oc "${OS_OUTPUT_BINPATH}/${platform}/${linkname}"
424
+ done
425
+ fi
426
}
427
readonly -f os::build::make_openshift_binary_symlinks
428
hack/lib/constants.sh
@@ -74,7 +74,6 @@ readonly OPENSHIFT_BINARY_SYMLINKS=(
74
osc
75
oadm
76
osadm
77
- kubectl
78
kubernetes
79
kubelet
80
kube-proxy
0 commit comments