CHANGELOG-1.19.md: Fix Spelling error about [function]

Signed-off-by: he.qingguo <he.qingguo@zte.com.cn>
This commit is contained in:
he.qingguo 2020-12-31 15:42:55 +08:00
parent 8725c3bf12
commit 38864e3d60

View File

@ -1434,7 +1434,7 @@ The new storage capacity tracking alpha feature is known to be affected by a lim
cm.NodeAllocatableRoot(s.CgroupRoot, s.CgroupDriver)
kubeDeps.CAdvisorInterface, err = cadvisor.New(imageFsInfoProvider, s.RootDirectory, cgroupRoots, cadvisor.UsingLegacyCadvisorStats(s.ContainerRuntime, s.RemoteRuntimeEndpoint))
the above funtionas we use cgroupRoots to create cadvisor interfacethe wrong parameter cgroupRoots will lead eviction manager not to collect metric from /docker, then kubelet frequently print those error
the above functionas we use cgroupRoots to create cadvisor interfacethe wrong parameter cgroupRoots will lead eviction manager not to collect metric from /docker, then kubelet frequently print those error
E0303 17:25:03.436781 63839 summary_sys_containers.go:47] Failed to get system container stats for "/docker": failed to get cgroup stats for "/docker": failed to get container info for "/docker": unknown container "/docker"
E0303 17:25:03.436809 63839 helpers.go:680] eviction manager: failed to construct signal: "allocatableMemory.available" error: system container "pods" not found in metrics ([#88970](https://github.com/kubernetes/kubernetes/pull/88970), [@mysunshine92](https://github.com/mysunshine92)) [SIG Node]
- In a HA env, during the period a standby scheduler lost connection to API server, if a Pod is deleted and recreated, and the standby scheduler becomes master afterwards, there could be a scheduler cache corruption. This PR fixes this issue. ([#91126](https://github.com/kubernetes/kubernetes/pull/91126), [@Huang-Wei](https://github.com/Huang-Wei)) [SIG Scheduling]