CmdReadinessProbe checks readiness by `Exec`ing a command (within container) which returns 0 to consider status being ready
| 498 | |
| 499 | // CmdReadinessProbe checks readiness by `Exec`ing a command (within container) which returns 0 to consider status being ready |
| 500 | type CmdReadinessProbe struct { |
| 501 | cmd *Command |
| 502 | } |
| 503 | |
| 504 | func NewCmdReadinessProbe(cmd *Command) *CmdReadinessProbe { |
| 505 | return &CmdReadinessProbe{cmd: cmd} |
nothing calls this directly
no outgoing calls
no test coverage detected