File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
1111
1212var probesShort = "Shows details of configured startup, readiness and liveness probes of each container"
1313
14- var probesDescription = ` Prints details of the currently configured startup, liveness and rediness probes for each
14+ var probesDescription = ` Prints details of the currently configured startup, liveness and readiness probes for each
1515container. Details like the delay timeout and action are printed along with the configured probe
1616type. If no name is specified the container probe details of all pods in the current namespace
1717are shown.`
@@ -185,7 +185,7 @@ func (s *probes) buildProbeList(container v1.Container) map[string][]probeAction
185185 probes ["readiness" ] = s .buildProbeAction ("readiness" , container .ReadinessProbe )
186186 }
187187 if container .StartupProbe != nil {
188- probes ["startup" ] = s .buildProbeAction ("liveness " , container .StartupProbe )
188+ probes ["startup" ] = s .buildProbeAction ("startup " , container .StartupProbe )
189189 }
190190
191191 return probes
You can’t perform that action at this time.
0 commit comments