Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include database envs for ogc-api-records #82

Merged
merged 2 commits into from
Feb 7, 2024
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ spec:
{{- if $webapp.extra_environment }}
{{- $webapp.extra_environment | toYaml | nindent 10 }}
{{- end }}
{{- include "georchestra.database-georchestra-envs" . | nindent 10 }}
edevosc2c marked this conversation as resolved.
Show resolved Hide resolved
{{- if $webapp.extra_environment }}
{{- $webapp.extra_environment | toYaml | nindent 10 }}
{{- end }}
{{- end }}

containers:
Expand All @@ -64,6 +68,11 @@ spec:
value: jdbc:postgresql://${PGHOST}:${PGPORT}/${PGDATABASE}?user=${PGUSER}&currentSchema=geonetwork
- name: SPRING_DATASOURCE_PASSWORD
value: ${PGPASSWORD}
{{- include "georchestra.service-envs" . | nindent 10 }}
{{- include "georchestra.common-envs" . | nindent 10 }}
{{- if $webapp.extra_environment }}
edevosc2c marked this conversation as resolved.
Show resolved Hide resolved
{{- $webapp.extra_environment | toYaml | nindent 10 }}
{{- end }}
{{- include "georchestra.database-georchestra-envs" . | nindent 10 }}
{{- if $webapp.extra_environment }}
{{- $webapp.extra_environment | toYaml | nindent 10 }}
Expand Down
Loading