Skip to content

Commit

Permalink
Adding frontend base environment variable if it is set. (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
samshuster authored Feb 3, 2020
1 parent 6114738 commit 2521453
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ spec:
ports:
- containerPort: 5000
env:
# FRONTEND_BASE is used by notifications util to provide links to amundsen pages in emails. If its not set, it will default to localhost.
{{ if .Values.FRONTEND_BASE }}
- name: FRONTEND_BASE
value: http://{{ .Values.FRONTEND_BASE }}
{{ end }}
- name: SEARCHSERVICE_BASE
value: http://{{ .Chart.Name }}-{{ .Values.searchServiceName }}:5001
- name: METADATASERVICE_BASE
Expand Down

0 comments on commit 2521453

Please sign in to comment.