From 2631be86fae5d79ea6754ce7411da72463ed1167 Mon Sep 17 00:00:00 2001 From: BorislavG Date: Wed, 1 Nov 2017 12:48:42 +0200 Subject: Fix configuration of elasticsearch elasticsearch config file was mapped to wrong location. Effectively, elasticsearch.yml file was not taken into account and default values are used. Issue-ID: OOM-390 Signed-off-by: BorislavG Change-Id: I494341f4c32dff9a13f4b0a460a24e6e9776c584 --- kubernetes/log/templates/elasticsearch-deployment.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'kubernetes/log/templates/elasticsearch-deployment.yaml') diff --git a/kubernetes/log/templates/elasticsearch-deployment.yaml b/kubernetes/log/templates/elasticsearch-deployment.yaml index f0db31a289..c123df1daa 100644 --- a/kubernetes/log/templates/elasticsearch-deployment.yaml +++ b/kubernetes/log/templates/elasticsearch-deployment.yaml @@ -51,10 +51,11 @@ spec: protocol: TCP readinessProbe: tcpSocket: - port: 9200 + port: 9300 volumeMounts: - - mountPath: /usr/share/elasticsearch/conf/ + - mountPath: /usr/share/elasticsearch/config/elasticsearch.yml name: elasticsearch-conf + subPath: elasticsearch.yml - mountPath: /usr/share/elasticsearch/data/ name: elasticsearch-data - mountPath: /usr/share/elasticsearch/logs/ @@ -80,4 +81,5 @@ metadata: namespace: {{ .Values.nsPrefix }}-log data: {{ (.Files.Glob "resources/elasticsearch/conf/elasticsearch.yml").AsConfig | indent 2 }} -#{{ end }} \ No newline at end of file +#{{ end }} + -- cgit 1.2.3-korg