Allow user to override value of influxdb image (#1642)
Co-authored-by: Vishal <vishal-biyani@users.noreply.github.com>
This commit is contained in:
@@ -343,7 +343,7 @@ spec:
|
|||||||
{{- if .Values.extraCoreComponentPodConfig }}
|
{{- if .Values.extraCoreComponentPodConfig }}
|
||||||
{{ toYaml .Values.extraCoreComponentPodConfig | indent 6 -}}
|
{{ toYaml .Values.extraCoreComponentPodConfig | indent 6 -}}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.influxdb.enabled }}
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
@@ -380,7 +380,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: influxdb
|
- name: influxdb
|
||||||
image: influxdb:1.7
|
image: {{ .Values.influxdb.image | quote }}
|
||||||
imagePullPolicy: {{ .Values.pullPolicy }}
|
imagePullPolicy: {{ .Values.pullPolicy }}
|
||||||
env:
|
env:
|
||||||
- name: INFLUXDB_DB
|
- name: INFLUXDB_DB
|
||||||
@@ -398,7 +398,7 @@ spec:
|
|||||||
{{- if .Values.extraCoreComponentPodConfig }}
|
{{- if .Values.extraCoreComponentPodConfig }}
|
||||||
{{ toYaml .Values.extraCoreComponentPodConfig | indent 6 -}}
|
{{ toYaml .Values.extraCoreComponentPodConfig | indent 6 -}}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.heapster }}
|
{{- if .Values.heapster }}
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
|
|||||||
@@ -269,6 +269,11 @@ analyticsNonHelmInstall: false
|
|||||||
## Enable Heapster only in clusters where heapster does not exist already
|
## Enable Heapster only in clusters where heapster does not exist already
|
||||||
heapster: false
|
heapster: false
|
||||||
|
|
||||||
|
## Enable InfluxDB
|
||||||
|
influxdb:
|
||||||
|
enabled: true
|
||||||
|
image: influxdb:1.7
|
||||||
|
|
||||||
# Allow user to override busybox image used in fluent-bit init container
|
# Allow user to override busybox image used in fluent-bit init container
|
||||||
busyboxImage: busybox
|
busyboxImage: busybox
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user