From 1899ce8f476cf2732e2286f736c6e223307955c0 Mon Sep 17 00:00:00 2001 From: Aron Kaufmann Date: Thu, 6 Jun 2024 13:47:18 +0200 Subject: [PATCH] add kibana extraContainers --- apigateway/helm/templates/kibana.yaml | 3 ++- apigateway/helm/values.yaml | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apigateway/helm/templates/kibana.yaml b/apigateway/helm/templates/kibana.yaml index 5994cbe..1ed4d92 100644 --- a/apigateway/helm/templates/kibana.yaml +++ b/apigateway/helm/templates/kibana.yaml @@ -130,4 +130,5 @@ spec: mountPath: /usr/share/kibana/config/elasticsearch-certs/truststore.p12 subPath: truststore.p12 readOnly: true - {{- end }} \ No newline at end of file + {{- end }} + {{- toYaml .Values.kibana.extraContainers | nindent 8 }} \ No newline at end of file diff --git a/apigateway/helm/values.yaml b/apigateway/helm/values.yaml index a6af954..52ce027 100644 --- a/apigateway/helm/values.yaml +++ b/apigateway/helm/values.yaml @@ -633,6 +633,9 @@ kibana: # -- The securityContext for kibana container. securityContext: {} + # -- The definition of extra containers for kibana. + extraContainers: [] + # -- The definition of extra initContainers for kibana. extraInitContainers: []