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
description: A Helm chart for InfluxDB v2
home: https://www.influxdata.com/products/influxdb-overview/influxdb-2-0/
type: application
version: 1.1.0
version: 1.2.0
maintainers:
- name: rawkode
email: rawkode@influxdata.com
......
......@@ -32,12 +32,14 @@ spec:
{{- end }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:v{{ .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ default .Chart.AppVersion .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
- influxd
- --engine-path
- {{ .Values.persistence.mountPath }}
- --bolt-path
- {{ .Values.persistence.mountPath }}/influxd.bolt
ports:
- name: {{ .Values.service.portName }}
containerPort: 8086
......
image:
repository: quay.io/influxdb/influxdb
repository: influxdb
# tag:
pullPolicy: IfNotPresent
podAnnotations: {}
......@@ -64,7 +65,7 @@ persistence:
# storageClass: "-"
accessMode: ReadWriteOnce
size: 50Gi
mountPath: /root/.influxdbv2
mountPath: /var/lib/influxdbv2
service:
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