Unverified Commit 53a58e65 authored by samshuster's avatar samshuster Committed by GitHub

Adding frontend base environment variable if it is set. (#272)

parent 17a31b82
...@@ -144,6 +144,11 @@ spec: ...@@ -144,6 +144,11 @@ spec:
ports: ports:
- containerPort: 5000 - containerPort: 5000
env: 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 - name: SEARCHSERVICE_BASE
value: http://{{ .Chart.Name }}-{{ .Values.searchServiceName }}:5001 value: http://{{ .Chart.Name }}-{{ .Values.searchServiceName }}:5001
- name: METADATASERVICE_BASE - name: METADATASERVICE_BASE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment