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 <francesco.canovai@enterprisedb.com>
This commit is contained in:
Francesco Canovai 2024-12-02 15:16:14 +01:00
parent 1f402d7664
commit ed7bf6da73
No known key found for this signature in database
GPG Key ID: C3867DCF133BFEB6

View File

@ -239,7 +239,7 @@ func reconcilePodSpec(
FailureThreshold: 3,
ProbeHandler: corev1.ProbeHandler{
Exec: &corev1.ExecAction{
Command: []string{"manager", "healthcheck", "unix"},
Command: []string{"/manager", "healthcheck", "unix"},
},
},
}