mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-11 04:52:08 +00:00
Fix typos in docker.go
This commit is contained in:
parent
b930d58fcb
commit
33039c2883
@ -51,8 +51,8 @@ const (
|
|||||||
milliCPUToCPU = 1000
|
milliCPUToCPU = 1000
|
||||||
|
|
||||||
// 100000 is equivalent to 100ms
|
// 100000 is equivalent to 100ms
|
||||||
quotaPeriod = 100000
|
quotaPeriod = 100000
|
||||||
minQuotaPerod = 1000
|
minQuotaPeriod = 1000
|
||||||
)
|
)
|
||||||
|
|
||||||
// DockerInterface is an abstract interface for testability. It abstracts the interface of docker.Client.
|
// DockerInterface is an abstract interface for testability. It abstracts the interface of docker.Client.
|
||||||
@ -324,8 +324,8 @@ func milliCPUToQuota(milliCPU int64) (quota int64, period int64) {
|
|||||||
quota = (milliCPU * quotaPeriod) / milliCPUToCPU
|
quota = (milliCPU * quotaPeriod) / milliCPUToCPU
|
||||||
|
|
||||||
// quota needs to be a minimum of 1ms.
|
// quota needs to be a minimum of 1ms.
|
||||||
if quota < minQuotaPerod {
|
if quota < minQuotaPeriod {
|
||||||
quota = minQuotaPerod
|
quota = minQuotaPeriod
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user