mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-02 21:54:07 +00:00
fix: add missing neo4j.host helm var (#1698)
Co-authored-by: jsotelo <javier.sotelo@viasat.com>
This commit is contained in:
parent
e7be6db936
commit
aa65b46be7
@ -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 }}"
|
||||
@ -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:
|
||||
|
||||
@ -82,6 +82,7 @@ global:
|
||||
url: "http://schema-registry:8081"
|
||||
|
||||
neo4j:
|
||||
host: "neo4j:7474"
|
||||
uri: "bolt://neo4j"
|
||||
username: "neo4j"
|
||||
password: "datahub"
|
||||
|
||||
@ -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:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user