Skip to content

Commit

Permalink
[svix] support any structure for env values
Browse files Browse the repository at this point in the history
  • Loading branch information
jshimko committed Oct 5, 2024
1 parent baf9091 commit ddae497
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/svix/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: svix
description: A Helm chart for running svix on Kubernetes
type: application
version: 0.6.3
version: 0.7.0

dependencies:
# Postgres Operator - PostgresCluster
Expand Down
5 changes: 2 additions & 3 deletions charts/svix/templates/svix/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,8 @@ spec:
env:
{{- include "svix.dbEnv" . | nindent 12 }}

{{- range .Values.svix.env }}
- name: {{ .name }}
value: {{ .value | quote }}
{{- with .Values.svix.env }}
{{- toYaml . | nindent 12 }}
{{- end }}

securityContext:
Expand Down

0 comments on commit ddae497

Please sign in to comment.