Skip to content

Commit

Permalink
fix(helm): switch to curl as ENTRYPOINT for probeWebhook (#2632)
Browse files Browse the repository at this point in the history
Signed-off-by: Tom McKay <thomasmckay@redhat.com>
Co-authored-by: Rita Zhang <rita.z.zhang@gmail.com>
  • Loading branch information
thomasmckay and ritazh committed Mar 24, 2023
1 parent b4638d3 commit 7b08d23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cmd/build/helmify/static/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ Output post install webhook probe container entry
- name: webhook-probe-post
image: "{{ .Values.postInstall.probeWebhook.image.repository }}:{{ .Values.postInstall.probeWebhook.image.tag }}"
imagePullPolicy: {{ .Values.postInstall.probeWebhook.image.pullPolicy }}
args:
command:
- "curl"
args:
- "--retry"
- "99999"
- "--retry-max-time"
Expand Down
3 changes: 2 additions & 1 deletion manifest_staging/charts/gatekeeper/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ Output post install webhook probe container entry
- name: webhook-probe-post
image: "{{ .Values.postInstall.probeWebhook.image.repository }}:{{ .Values.postInstall.probeWebhook.image.tag }}"
imagePullPolicy: {{ .Values.postInstall.probeWebhook.image.pullPolicy }}
args:
command:
- "curl"
args:
- "--retry"
- "99999"
- "--retry-max-time"
Expand Down

0 comments on commit 7b08d23

Please sign in to comment.