forked from billimek/k8s-gitops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
influxdb.yaml
59 lines (59 loc) · 1.28 KB
/
influxdb.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: influxdb
namespace: monitoring
spec:
interval: 5m
chart:
spec:
# renovate: registryUrl=https://helm.influxdata.com/
chart: influxdb
version: 4.12.5
sourceRef:
kind: HelmRepository
name: influxdata-charts
namespace: flux-system
interval: 5m
values:
image:
repository: "influxdb"
tag: "1.8.10"
service:
type: LoadBalancer
persistence:
enabled: true
size: 50Gi
storageClass: rook-ceph-block
resources:
requests:
memory: 2000Mi
cpu: 100m
limits:
memory: 4000Mi
livenessProbe:
timeoutSeconds: 10
readinessProbe:
timeoutSeconds: 10
startupProbe:
enabled: true
failureThreshold: 10
periodSeconds: 10
config:
opentsdb:
enabled: true
bind-address: ":4242"
graphite:
enabled: true
database: graphitedb
retention-policy: ""
bind-address: ":2003"
protocol: tcp
consistency-lvel: one
templates:
- "*.app env.service.resource.measurement"
- "servers.* .host.resource.measurement.field*"
tolerations:
- key: "arm"
operator: "Exists"