fix typo
This commit is contained in:
parent
04ff155724
commit
5a8517a21e
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue