mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-13 06:03:10 +01:00
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:
parent
1f402d7664
commit
ed7bf6da73
@ -239,7 +239,7 @@ func reconcilePodSpec(
|
|||||||
FailureThreshold: 3,
|
FailureThreshold: 3,
|
||||||
ProbeHandler: corev1.ProbeHandler{
|
ProbeHandler: corev1.ProbeHandler{
|
||||||
Exec: &corev1.ExecAction{
|
Exec: &corev1.ExecAction{
|
||||||
Command: []string{"manager", "healthcheck", "unix"},
|
Command: []string{"/manager", "healthcheck", "unix"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user