Skip to content

Commit

Permalink
Add missing quotes for interceptor's TLS-related env vars
Browse files Browse the repository at this point in the history
Signed-off-by: Jirka Kremser <[email protected]>
  • Loading branch information
jkremser committed Jul 16, 2024
1 parent 8b3a8ec commit e1f14a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions http-add-on/templates/interceptor/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ spec:
- name: KEDA_HTTP_PROXY_TLS_ENABLED
value: "true"
- name: KEDA_HTTP_PROXY_TLS_CERT_PATH
value: {{ .Values.interceptor.tls.cert_path }}
value: "{{ .Values.interceptor.tls.cert_path }}"
- name: KEDA_HTTP_PROXY_TLS_KEY_PATH
value: {{ .Values.interceptor.tls.key_path }}
value: "{{ .Values.interceptor.tls.key_path }}"
- name: KEDA_HTTP_PROXY_TLS_PORT
value: {{ .Values.interceptor.tls.port }}
value: "{{ .Values.interceptor.tls.port }}"
{{- end }}
ports:
- containerPort: {{ .Values.interceptor.admin.port }}
Expand Down

0 comments on commit e1f14a0

Please sign in to comment.