You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contributors/devel/development.md
+10-12Lines changed: 10 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ resilient behavior. For example: if your patch causes a controller to better
50
50
handle inconsistent data, make a mock object which returns incorrect data a few
51
51
times and verify the controller's new behaviour.
52
52
53
-
### Is this a performance improvement?
53
+
### Is this a performance improvement?
54
54
55
55
Performance bug reports MUST include data that demonstrates the bug. Without
56
56
data, the issue will be closed. You can measure performance using kubemark,
@@ -98,7 +98,7 @@ or all of these before you get started.
98
98
Since performance improvements can be empirically measured, you should follow
99
99
the "scientific method" of creating a hypothesis, collecting data, and then
100
100
revising your hypothesis. The above issues do this transparently, using figures
101
-
and data rather then conjecture. Notice that the problem is analyzed and a
101
+
and data rather than conjecture. Notice that the problem is analyzed and a
102
102
correct solution is created before a single line of code is reviewed.
103
103
104
104
## Building Kubernetes with Docker
@@ -260,7 +260,7 @@ development environment, please follow the instructions in the
260
260
Confirm that your `GOPATH` and `GOBIN` environment variables are
261
261
correctly set as detailed in
262
262
[How to Write Go Code](https://golang.org/doc/code.html) before
263
-
prodeding.
263
+
proceeding.
264
264
265
265
**Note:** Building and developing Kubernetes requires a very recent
266
266
version of Go. Please install the newest stable version available for
@@ -306,7 +306,7 @@ You are now ready to clone the Kubernetes git repository. See the [GitHub Workfl
306
306
307
307
#### etcd
308
308
309
-
To test Kubernetes, you will need to install a recent version of [etcd](https://etcd.io/), a consistent and highly-available keyvalue store. To install a local version of etcd, run the following command in your Kubernetes working directory.
309
+
To test Kubernetes, you will need to install a recent version of [etcd](https://etcd.io/), a consistent and highly-available key-value store. To install a local version of etcd, run the following command in your Kubernetes working directory.
310
310
311
311
```sh
312
312
./hack/install-etcd.sh
@@ -374,9 +374,8 @@ make cross KUBE_BUILD_PLATFORMS=windows/amd64
374
374
375
375
## A Quick Start for Testing Kubernetes
376
376
377
-
Kubernetes only merges pull requests when unit, integration, and e2e tests are
378
-
passing, so it is important that your development environment can
379
-
successfully run all tests. While this quick start will get you going,
377
+
Because kubernetes only merges pull requests when unit, integration, and e2e tests are
378
+
passing, your development environment needs to run all tests successfully. While this quick start will get you going,
380
379
to really understand the testing infrastructure, read the
381
380
[Testing Guide](sig-testing/testing.md) and check out the
0 commit comments