summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork8s-ci-robot <k8s-ci-robot@users.noreply.github.com>2018-10-24 12:42:52 -0700
committerGitHub <noreply@github.com>2018-10-24 12:42:52 -0700
commita8944bea54d4bb854bdd5da98ecae3ebc7a18d9a (patch)
treebec5dcb5676e61530f6442790724c3d0cbcac1b4
parent3947e50fd5fd7bf2fb31113c4a7a7c63b536c026 (diff)
parent5a8517a21ee01fbd81ce50a9a00454139b554718 (diff)
Merge pull request #2845 from TinySong/fix-typo
fix typo
-rw-r--r--contributors/design-proposals/multi-platform.md2
-rw-r--r--contributors/design-proposals/network/support_traffic_shaping_for_kubelet_cni.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/contributors/design-proposals/multi-platform.md b/contributors/design-proposals/multi-platform.md
index 279d14cd..32258ab9 100644
--- a/contributors/design-proposals/multi-platform.md
+++ b/contributors/design-proposals/multi-platform.md
@@ -209,7 +209,7 @@ Go 1.5 introduced many changes. To name a few that are relevant to Kubernetes:
- The garbage collector became more efficient (but also [confused our latency test](https://github.com/golang/go/issues/14396)).
- `linux/arm64` and `linux/ppc64le` were added as new ports.
- The `GO15VENDOREXPERIMENT` was started. We switched from `Godeps/_workspace` to the native `vendor/` in [this PR](https://github.com/kubernetes/kubernetes/pull/24242).
- - It's not required to pre-build the whole standard library `std` when cross-compliling. [Details](#prebuilding-the-standard-library-std)
+ - It's not required to pre-build the whole standard library `std` when cross-compiling. [Details](#prebuilding-the-standard-library-std)
- Builds are approximately twice as slow as earlier. That affects the CI. [Details](#releasing)
- The native Go DNS resolver will suffice in the most situations. This makes static linking much easier.
diff --git a/contributors/design-proposals/network/support_traffic_shaping_for_kubelet_cni.md b/contributors/design-proposals/network/support_traffic_shaping_for_kubelet_cni.md
index 827df5a8..659bbf53 100644
--- a/contributors/design-proposals/network/support_traffic_shaping_for_kubelet_cni.md
+++ b/contributors/design-proposals/network/support_traffic_shaping_for_kubelet_cni.md
@@ -81,7 +81,7 @@ Kubelet would then populate the `runtimeConfig` section of the config when calli
### Pod Teardown
-When we delete a pod, kubelet will bulid the runtime config for calling cni plugin `DelNetwork/DelNetworkList` API, which will remove this pod's bandwidth configuration.
+When we delete a pod, kubelet will build the runtime config for calling cni plugin `DelNetwork/DelNetworkList` API, which will remove this pod's bandwidth configuration.
## Next step