@@ -70,7 +70,6 @@ readonly KUBE_SUPPORTED_TEST_PLATFORMS=(
70
70
)
71
71
72
72
# The set of server targets that we are only building for Linux
73
- # If you update this list, please also update build/BUILD.
74
73
kube::golang::server_targets () {
75
74
local targets=(
76
75
cmd/kube-proxy
@@ -123,7 +122,6 @@ IFS=" " read -ra KUBE_CONFORMANCE_IMAGE_TARGETS <<< "$(kube::golang::conformance
123
122
readonly KUBE_CONFORMANCE_IMAGE_TARGETS
124
123
125
124
# The set of server targets that we are only building for Kubernetes nodes
126
- # If you update this list, please also update build/BUILD.
127
125
kube::golang::node_targets () {
128
126
local targets=(
129
127
cmd/kube-proxy
@@ -256,7 +254,6 @@ kube::golang::setup_platforms() {
256
254
kube::golang::setup_platforms
257
255
258
256
# The set of client targets that we are building for all platforms
259
- # If you update this list, please also update build/BUILD.
260
257
readonly KUBE_CLIENT_TARGETS=(
261
258
cmd/kubectl
262
259
cmd/kubectl-convert
@@ -265,7 +262,6 @@ readonly KUBE_CLIENT_BINARIES=("${KUBE_CLIENT_TARGETS[@]##*/}")
265
262
readonly KUBE_CLIENT_BINARIES_WIN=(" ${KUBE_CLIENT_BINARIES[@]/%/ .exe} " )
266
263
267
264
# The set of test targets that we are building for all platforms
268
- # If you update this list, please also update build/BUILD.
269
265
kube::golang::test_targets () {
270
266
local targets=(
271
267
cmd/gendocs
@@ -283,7 +279,6 @@ IFS=" " read -ra KUBE_TEST_TARGETS <<< "$(kube::golang::test_targets)"
283
279
readonly KUBE_TEST_TARGETS
284
280
readonly KUBE_TEST_BINARIES=(" ${KUBE_TEST_TARGETS[@]##*/ } " )
285
281
readonly KUBE_TEST_BINARIES_WIN=(" ${KUBE_TEST_BINARIES[@]/%/ .exe} " )
286
- # If you update this list, please also update build/BUILD.
287
282
readonly KUBE_TEST_PORTABLE=(
288
283
test/e2e/testing-manifests
289
284
test/kubemark
@@ -296,7 +291,6 @@ readonly KUBE_TEST_PORTABLE=(
296
291
# Test targets which run on the Kubernetes clusters directly, so we only
297
292
# need to target server platforms.
298
293
# These binaries will be distributed in the kubernetes-test tarball.
299
- # If you update this list, please also update build/BUILD.
300
294
kube::golang::server_test_targets () {
301
295
local targets=(
302
296
cmd/kubemark
0 commit comments