Skip to content

Commit

Permalink
quote retryPolicyExponentialBackoff and retryPolicyMaxRetries (#72)
Browse files Browse the repository at this point in the history
Co-authored-by: danielwitz <danielwitz@users.noreply.github.com>
  • Loading branch information
danielwitz and danielwitz authored Aug 9, 2023
1 parent 0b47968 commit 7231c0c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/dafka-consumer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
description: A Helm Chart for Dafka Consumer
name: dafka-consumer
version: 7.5.8
version: 7.5.9
2 changes: 1 addition & 1 deletion charts/dafka-consumer/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dafka-consumer

![Version: 7.5.8](https://img.shields.io/badge/Version-7.5.8-informational?style=flat-square)
![Version: 7.5.9](https://img.shields.io/badge/Version-7.5.9-informational?style=flat-square)

A Helm Chart for Dafka Consumer

Expand Down
4 changes: 2 additions & 2 deletions charts/dafka-consumer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ spec:
{{ end }}
{{ if .Values.retryPolicyExponentialBackoff}}
- name: RETRY_POLICY_EXPONENTIAL_BACKOFF
value: {{ .Values.retryPolicyExponentialBackoff }}
value: {{ .Values.retryPolicyExponentialBackoff | squote }}
{{ end }}
{{ if .Values.retryPolicyMaxRetries}}
- name: RETRY_POLICY_MAX_RETRIES
value: {{ .Values.retryPolicyMaxRetries }}
value: {{ .Values.retryPolicyMaxRetries | squote }}
{{ end }}
livenessProbe:
httpGet:
Expand Down

0 comments on commit 7231c0c

Please sign in to comment.