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

add missing support variable env #78

Merged
merged 1 commit into from
Dec 7, 2023
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
4 changes: 4 additions & 0 deletions templates/datafeeder/import-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ spec:
- name: georchestra-import
image: {{ $webapp.docker_image }}
imagePullPolicy: Always
{{- if $webapp.extra_environment }}
env:
{{- $webapp.extra_environment | toYaml | nindent 10 }}
{{- end }}
ports:
- containerPort: 80
name: http
Expand Down
5 changes: 4 additions & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ georchestra:
enabled: true
replicaCount: "1"
docker_image: georchestra/cas:latest
extra_environment: []
# registry_secret: default
console:
enabled: true
Expand All @@ -35,7 +36,7 @@ georchestra:
enabled: true # won't deploy if datafeeder_frontend is not enable
replicaCount: "1"
docker_image: georchestra/datafeeder:latest
extra_environment:
extra_environment: []
# - name: SMTPHOST
# value: "my_smtp_host"
# - name: SMTPPORT
Expand All @@ -49,6 +50,7 @@ georchestra:
replicaCount: "1"
docker_image: georchestra/datafeeder-frontend:latest
lifecycle: {}
extra_environment: []
# registry_secret: default
extractorapp:
enabled: false
Expand Down Expand Up @@ -119,6 +121,7 @@ georchestra:
docker_image: georchestra/mapstore:latest
# registry_secret: default
# no need to put the original command already managed
extra_environment: []
command: []
args: []
lifecycle: {}
Expand Down
Loading