Skip to content

Commit e67b799

Browse files
committed
Fix missing kind in pod state message
1 parent c3a5e01 commit e67b799

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/schema/v1/pod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ func (p *Pod) getIcingaState(pod *kcorev1.Pod) (IcingaState, string) {
367367

368368
state, reasons, _ := collectContainerStates(p)
369369

370-
return state, fmt.Sprintf("%s/%s is %s.\n%s", pod.Namespace, pod.Name, state, reasons)
370+
return state, fmt.Sprintf("Pod %s/%s is %s.\n%s", pod.Namespace, pod.Name, state, reasons)
371371
}
372372

373373
state, reasons, notRunning := collectContainerStates(p)

0 commit comments

Comments
 (0)