Skip to content

Commit ed7bf6d

Browse files
committed
fix: startup probe path
Startup probe wasn't able to find the manager command in its path. Now we use an absolute one. Signed-off-by: Francesco Canovai <[email protected]>
1 parent 1f402d7 commit ed7bf6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/cnpgi/operator/lifecycle.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ func reconcilePodSpec(
239239
FailureThreshold: 3,
240240
ProbeHandler: corev1.ProbeHandler{
241241
Exec: &corev1.ExecAction{
242-
Command: []string{"manager", "healthcheck", "unix"},
242+
Command: []string{"/manager", "healthcheck", "unix"},
243243
},
244244
},
245245
}

0 commit comments

Comments
 (0)