Commit 42f9aaa8 authored by Alex Williams's avatar Alex Williams Committed by David McKay

influxdb2 - persist bolt-path in volume. use docker hub.

parent 50b2337e
...@@ -5,7 +5,7 @@ name: influxdb2 ...@@ -5,7 +5,7 @@ name: influxdb2
description: A Helm chart for InfluxDB v2 description: A Helm chart for InfluxDB v2
home: https://www.influxdata.com/products/influxdb-overview/influxdb-2-0/ home: https://www.influxdata.com/products/influxdb-overview/influxdb-2-0/
type: application type: application
version: 1.1.0 version: 1.2.0
maintainers: maintainers:
- name: rawkode - name: rawkode
email: rawkode@influxdata.com email: rawkode@influxdata.com
......
...@@ -32,12 +32,14 @@ spec: ...@@ -32,12 +32,14 @@ spec:
{{- end }} {{- end }}
containers: containers:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:v{{ .Chart.AppVersion }}" image: "{{ .Values.image.repository }}:{{ default .Chart.AppVersion .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
args: args:
- influxd - influxd
- --engine-path - --engine-path
- {{ .Values.persistence.mountPath }} - {{ .Values.persistence.mountPath }}
- --bolt-path
- {{ .Values.persistence.mountPath }}/influxd.bolt
ports: ports:
- name: {{ .Values.service.portName }} - name: {{ .Values.service.portName }}
containerPort: 8086 containerPort: 8086
......
image: image:
repository: quay.io/influxdb/influxdb repository: influxdb
# tag:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
podAnnotations: {} podAnnotations: {}
...@@ -64,7 +65,7 @@ persistence: ...@@ -64,7 +65,7 @@ persistence:
# storageClass: "-" # storageClass: "-"
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
size: 50Gi size: 50Gi
mountPath: /root/.influxdbv2 mountPath: /var/lib/influxdbv2
service: service:
type: ClusterIP type: ClusterIP
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment