Fix comment typo probeContainerReadiness

This commit is contained in:
Scott Dodson 2015-03-30 15:54:05 -04:00
parent 4659a12d6b
commit de87048def

View File

@ -85,7 +85,7 @@ func (kl *Kubelet) probeContainerLiveness(pod *api.Pod, status api.PodStatus, co
return kl.runProbeWithRetries(p, pod, status, container, maxProbeRetries)
}
// probeContainerLiveness probes the readiness of a container.
// probeContainerReadiness probes the readiness of a container.
// If the initial delay on the readiness probe has not passed the probe will return probe.Failure.
func (kl *Kubelet) probeContainerReadiness(pod *api.Pod, status api.PodStatus, container api.Container, createdAt int64) (probe.Result, error) {
p := container.ReadinessProbe