Skip to content

Commit

Permalink
adding pharos and drug central env vars to both kube containers
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanDietzMorris committed Jan 18, 2023
1 parent 8eed7c9 commit c8b3a8a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions helm/data-services/templates/graph-builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,26 @@ spec:
- name: EDGE_NORMALIZATION_ENDPOINT
value: {{ .Values.dataServices.normalization.edgeNormEndpoint }}
{{- end }}
- name: DRUGCENTRAL_DB_HOST
value: {{ .Values.drugcentral.host | quote }}
- name: DRUGCENTRAL_DB_USER
value: {{ .Values.drugcentral.user | quote }}
- name: DRUGCENTRAL_DB_PASSWORD
value: {{ .Values.drugcentral.password | quote }}
- name: DRUGCENTRAL_DB_PORT
value: {{ .Values.drugcentral.port | quote }}
- name: DRUGCENTRAL_DB_NAME
value: {{ .Values.drugcentral.db_name | quote }}
- name: PHAROS_DB_HOST
value: {{ .Values.pharos.host | quote }}
- name: PHAROS_DB_USER
value: {{ .Values.pharos.user | quote }}
- name: PHAROS_DB_PASSWORD
value: {{ .Values.pharos.password | quote }}
- name: PHAROS_DB_PORT
value: {{ .Values.pharos.port | quote }}
- name: PHAROS_DB_NAME
value: {{ .Values.pharos.db_name | quote }}
resources:
{{- toYaml .Values.dataServices.resources | nindent 12 }}
{{- end }}
Expand Down

0 comments on commit c8b3a8a

Please sign in to comment.