fix: add missing neo4j.host helm var (#1698)

Co-authored-by: jsotelo <javier.sotelo@viasat.com>
This commit is contained in:
Javier Sotelo 2020-06-11 12:03:51 -07:00 committed by GitHub
parent e7be6db936
commit aa65b46be7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 1 deletions

View File

@ -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 }}"

View File

@ -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:

View File

@ -82,6 +82,7 @@ global:
url: "http://schema-registry:8081"
neo4j:
host: "neo4j:7474"
uri: "bolt://neo4j"
username: "neo4j"
password: "datahub"

View File

@ -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: