Skip to content

Commit

Permalink
fix: add missing neo4j.host helm var (#1698)
Browse files Browse the repository at this point in the history
Co-authored-by: jsotelo <[email protected]>
  • Loading branch information
jsotelo and jsotelo-viasat authored Jun 11, 2020
1 parent e7be6db commit aa65b46
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ data:
kafka.schemaregistry.url: "{{ .Values.global.kafka.schemaregistry.url }}"
elasticsearch.host: "{{ .Values.global.elasticsearch.host }}"
elasticsearch.port: "{{ .Values.global.elasticsearch.port }}"
neo4j.uri: "{{ .Values.global.neo4j.uri }}"
neo4j.host: "{{ .Values.global.neo4j.host }}"
neo4j.uri: "{{ .Values.global.neo4j.uri }}"
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ spec:
configMapKeyRef:
name: {{ include "datahub-gms.fullname" . }}-configmap
key: elasticsearch.port
- name: NEO4J_HOST
valueFrom:
configMapKeyRef:
name: {{ include "datahub-gms.fullname" . }}-configmap
key: neo4j.host
- name: NEO4J_URI
valueFrom:
configMapKeyRef:
Expand Down
1 change: 1 addition & 0 deletions contrib/kubernetes/datahub/charts/datahub-gms/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ global:
url: "http://schema-registry:8081"

neo4j:
host: "neo4j:7474"
uri: "bolt://neo4j"
username: "neo4j"
password: "datahub"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ spec:
configMapKeyRef:
name: datahub-gms-deployment-configmap
key: elasticsearch.port
- name: NEO4J_HOST
valueFrom:
configMapKeyRef:
name: datahub-gms-deployment-configmap
key: neo4j.host
- name: NEO4J_URI
valueFrom:
configMapKeyRef:
Expand Down

0 comments on commit aa65b46

Please sign in to comment.