kubelet: fix comment typo

This commit is contained in:
champly 2023-05-22 14:36:57 +08:00
parent 1dba84be8a
commit 72f89b6375

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 {