Skip to content

Commit 7867d14

Browse files
committed
feat(influxdb): upgrade to influxdb 2.x
1 parent 2ea9a57 commit 7867d14

1 file changed

Lines changed: 26 additions & 24 deletions

File tree

charts/workflow/values.yaml

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,32 @@ redis:
202202
addrs: "" # A list of clusters: "127.0.0.1:7001/1,127.0.0.2:7002/1"
203203
password: "redis password" # "" == no password
204204

205+
influxdb:
206+
# URL configuration is only available in off-cluster Influx database
207+
url: "http://my.influx.url:8086"
208+
bucket: "kubernetes"
209+
org: "org"
210+
token: "token"
211+
# Configure the following is only available in on-cluster Influx database
212+
user: "admin"
213+
password: "admin123"
214+
# GCP PDs and EBS volumes are supported only
215+
persistence:
216+
enabled: false # Set to true to enable persistence
217+
accessMode: ReadWriteOnce
218+
size: 5Gi # PVC size
219+
## influxdb data Persistent Volume Storage Class
220+
## If defined, storageClassName: <storageClass>
221+
## If set to "-", storageClassName: "", which disables dynamic provisioning
222+
## If undefined (the default) or set to null, no storageClassName spec is
223+
## set, choosing the default provisioner. (gp2 on AWS, standard on
224+
## GKE, AWS & OpenStack)
225+
##
226+
## Storage class of PV to bind. By default it looks for standard storage class.
227+
## If the PV uses a different storage class, specify that here.
228+
storageClass: ""
229+
volumeName: ""
230+
205231
fluentd:
206232
syslog:
207233
# Configure the following ONLY if using Fluentd to send log messages to both
@@ -233,30 +259,6 @@ monitor:
233259
storageClass: default
234260
volumeName: ""
235261

236-
influxdb:
237-
# Configure the following ONLY if using an off-cluster Influx database
238-
url: "http://my.influx.url:8086"
239-
database: "kubernetes"
240-
user: "user"
241-
password: "password"
242-
# Configure the following ONLY if you want persistence for on-cluster influxdb
243-
# GCP PDs and EBS volumes are supported only
244-
persistence:
245-
enabled: false # Set to true to enable persistence
246-
accessMode: ReadWriteOnce
247-
size: 5Gi # PVC size
248-
## influxdb data Persistent Volume Storage Class
249-
## If defined, storageClassName: <storageClass>
250-
## If set to "-", storageClassName: "", which disables dynamic provisioning
251-
## If undefined (the default) or set to null, no storageClassName spec is
252-
## set, choosing the default provisioner. (gp2 on AWS, standard on
253-
## GKE, AWS & OpenStack)
254-
##
255-
## Storage class of PV to bind. By default it looks for standard storage class.
256-
## If the PV uses a different storage class, specify that here.
257-
storageClass: ""
258-
volumeName: ""
259-
260262
registry:
261263
hostname: ""
262264
organization: ""

0 commit comments

Comments
 (0)