Commit 1feb26e
committed
operator: Use absolute path in Dockerfile ENTRYPOINT
The distroless base image has no $PATH, so the relative command
"redpanda-operator" cannot be resolved. Normally the Helm chart
overrides the entrypoint via the pod spec command field, but when
the command is cleared (e.g. for dlv debugging) the container falls
back to the Dockerfile ENTRYPOINT and fails with "executable file
not found in $PATH".
Use the absolute path "/redpanda-operator" to match where the binary
is installed (line 11).1 parent e796c31 commit 1feb26e
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
0 commit comments