Documentation ¶ Index ¶ func CheckPassed(report Report, message string) bool type Check type Options type Report func Run(ctx context.Context) (Report, error) func RunWithOptions(ctx context.Context, opts Options) (Report, error) func (r Report) HasFailures() bool Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func CheckPassed ¶ func CheckPassed(report Report, message string) bool Types ¶ type Check ¶ type Check struct { Status string Message string } type Options ¶ type Options struct { CheckImages bool ImageCheckTimeout time.Duration } type Report ¶ type Report struct { Checks []Check OKCount int WarnCount int MissCount int FailCount int } func Run ¶ func Run(ctx context.Context) (Report, error) func RunWithOptions ¶ func RunWithOptions(ctx context.Context, opts Options) (Report, error) func (Report) HasFailures ¶ func (r Report) HasFailures() bool Source Files ¶ View all Source files doctor.go Click to show internal directories. Click to hide internal directories.