mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/kibana] Fix for issue with resources not working when specifying extra container (#7917)
* Fix for issue with resources not working when specifying extra container Signed-off-by: towmeykaw <tkindmark@gmail.com> * Bumped chartversion Signed-off-by: towmeykaw <tkindmark@gmail.com> * Update Chart.yaml Signed-off-by: towmeykaw <tkindmark@gmail.com>
This commit is contained in:
committed by
k8s-ci-robot
parent
46955b7e19
commit
dafdf97d0c
@@ -1,5 +1,5 @@
|
||||
name: kibana
|
||||
version: 0.14.3
|
||||
version: 0.14.4
|
||||
appVersion: 6.4.1
|
||||
description: Kibana is an open source data visualization plugin for Elasticsearch
|
||||
icon: https://raw.githubusercontent.com/elastic/kibana/master/src/ui/public/icons/kibana-color.svg
|
||||
|
||||
@@ -133,9 +133,6 @@ spec:
|
||||
port: {{ .Values.service.internalPort }}
|
||||
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
|
||||
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
|
||||
{{- end }}
|
||||
{{- with .Values.extraContainers }}
|
||||
{{ tpl . $ | indent 6 }}
|
||||
{{- end }}
|
||||
resources:
|
||||
{{ toYaml .Values.resources | indent 10 }}
|
||||
@@ -148,6 +145,9 @@ spec:
|
||||
{{- if .Values.plugins}}
|
||||
- name: plugins
|
||||
mountPath: /usr/share/kibana/plugins
|
||||
{{- with .Values.extraContainers }}
|
||||
{{ tpl . $ | indent 6 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if .Values.image.pullSecrets }}
|
||||
imagePullSecrets:
|
||||
|
||||
Reference in New Issue
Block a user