Merge pull request #118165 from champly/master

kubelet: fix comment typo
This commit is contained in:
Kubernetes Prow Robot 2023-10-17 23:28:25 +02:00 committed by GitHub
commit a7b8357a55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,7 +190,7 @@ func parsePercentage(v string) (int64, error) {
return percentage, nil
}
// ParseQOSReserved parses the --qos-reserve-requests option
// ParseQOSReserved parses the --qos-reserved option
func ParseQOSReserved(m map[string]string) (*map[v1.ResourceName]int64, error) {
reservations := make(map[v1.ResourceName]int64)
for k, v := range m {