diff --git a/internal/resource/container.go b/internal/resource/container.go index ae6eba95..1572ee5d 100644 --- a/internal/resource/container.go +++ b/internal/resource/container.go @@ -287,9 +287,9 @@ func toRes(r v1.ResourceList) (string, string) { func probe(p *v1.Probe) string { if p == nil { - return "on" + return "off" } - return "off" + return "on" } func asMi(v int64) float64 {