Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions infra/helm/charts/app/templates/api-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,11 @@ spec:
timeoutSeconds: 3
resources:
{{- toYaml .Values.api.resources | nindent 12 }}
{{- if .Values.api.extraVolumeMounts }}
volumeMounts:
{{- toYaml .Values.api.extraVolumeMounts | nindent 12 }}
{{- end }}
{{- if .Values.api.extraVolumes }}
volumes:
{{- toYaml .Values.api.extraVolumes | nindent 8 }}
{{- end }}
4 changes: 4 additions & 0 deletions infra/helm/charts/app/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ api:
fhirRelease: "R4"
externalMongodbConnectionString: ""
existingSecret: ""
# Extra volume mounts for the API container (e.g. for certificate files)
extraVolumeMounts: []
# Extra volumes for the API pod (e.g. Kubernetes Secrets)
extraVolumes: []
# Hostnames for API HTTPRoute
hostnames: []

Expand Down
Loading