Merge pull request #88306 from YuikoTakada/fix_non_aschii_kubelet_qos

Fix non-ascii characters in pkg/kubelet/qos/doc.go
This commit is contained in:
Kubernetes Prow Robot 2020-06-10 04:38:08 -07:00 committed by GitHub
commit 4c5167a152
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,8 +18,8 @@ limitations under the License.
// For each resource (memory, CPU) Kubelet supports three classes of containers.
// Memory guaranteed containers will receive the highest priority and will get all the resources
// they need.
// Burstable containers will be guaranteed their request and can “burst” and use more resources
// Burstable containers will be guaranteed their request and can "burst" and use more resources
// when available.
// Best-Effort containers, which dont specify a request, can use resources only if not being used
// Best-Effort containers, which don't specify a request, can use resources only if not being used
// by other pods.
package qos // import "k8s.io/kubernetes/pkg/kubelet/qos"