amoghrajesh commented on code in PR #33438:
URL: https://github.com/apache/airflow/pull/33438#discussion_r1296031372
##########
chart/templates/pgbouncer/pgbouncer-deployment.yaml:
##########
@@ -101,6 +101,13 @@ spec:
args: {{ tpl (toYaml .Values.pgbouncer.args) . | nindent 12 }}
{{- end }}
resources: {{- toYaml .Values.pgbouncer.resources | nindent 12 }}
+ {{- if .Values.pgbouncer.env }}
+ env:
+ {{- range $i, $config := .Values.pgbouncer.env }}
+ - value: {{ $config.value }}
+ name: {{ $config.name }}
+ {{- end }}
+ {{- end }}
Review Comment:
.env will be an array of key value pairs. How do you propose we add it
instead?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]