Skip to content

Commit ebf05b5

Browse files
authored
Merge pull request #5909 from SataQiu/remove-bazel-build
Remove bazel build
2 parents 89026dd + 51b267d commit ebf05b5

File tree

4 files changed

+0
-204
lines changed

4 files changed

+0
-204
lines changed

contributors/devel/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,6 @@ See the [kubernetes/release](https://github.com/kubernetes/release) repository f
161161

162162
* **Flaky tests** [flaky-tests.md](sig-testing/flaky-tests.md)
163163

164-
* **Build and test with Bazel** [bazel.md](sig-testing/bazel.md)
165-
166164
### SIG Node
167165

168166
* **CRI: the Container Runtime Interface** [container-runtime-interface.md](sig-node/container-runtime-interface.md)

contributors/devel/development.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -481,12 +481,6 @@ Developers who need to manage dependencies in the `vendor/` tree should read
481481
the docs on [using go modules to manage dependencies](/contributors/devel/sig-architecture/vendor.md).
482482

483483

484-
## Build with Bazel/Gazel
485-
486-
Building with Bazel is currently experimental. For more information,
487-
see [Build with Bazel].
488-
489-
490484
## GitHub workflow
491485

492486
To check out code to work on, please refer to [this guide](/contributors/guide/github-workflow.md).
@@ -503,4 +497,3 @@ To check out code to work on, please refer to [this guide](/contributors/guide/g
503497
[kubectl user guide]: https://kubernetes.io/docs/user-guide/kubectl
504498
[kubernetes.io]: https://kubernetes.io
505499
[mercurial]: http://mercurial.selenic.com/wiki/Download
506-
[Build with Bazel]: sig-testing/bazel.md

contributors/devel/sig-architecture/conformance-tests.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -188,11 +188,7 @@ appropriate endpoint and credentials.
188188
2. Create your kind node image:
189189

190190
```sh
191-
# Without bazel
192191
kind build node-image
193-
194-
# Or with bazel
195-
kind build node-image --type bazel
196192
```
197193

198194
3. Create your kind e2e cluster config kind-config-yaml:
@@ -225,21 +221,13 @@ kind create cluster --config kind-config.yaml --image kindest/node:latest -v4
225221
6. Create your e2e Kubernetes binary (from your Kubernetes src code):
226222

227223
```sh
228-
# Without bazel
229224
make WHAT="test/e2e/e2e.test"
230-
231-
# Or with bazel
232-
bazel build //test/e2e:e2e.test
233225
```
234226

235227
7. Execute your tests:
236228

237229
```sh
238-
# Without bazel
239230
./_output/bin/e2e.test -context kind-kind -ginkgo.focus="\[sig-network\].*Conformance" -num-nodes 2
240-
241-
# Or with bazel
242-
./bazel-bin/test/e2e/e2e.test -context kind-kind -ginkgo.focus="\[sig-network\].*Conformance" -num-nodes 2
243231
```
244232

245233
### Running Conformance Tests With kubetest

contributors/devel/sig-testing/bazel.md

Lines changed: 0 additions & 183 deletions
This file was deleted.

0 commit comments

Comments
 (0)