@@ -3,37 +3,25 @@ parseable:
3
3
repository : parseable/parseable
4
4
tag : v0.4.4
5
5
pullPolicy : Always
6
- # # Set to true if you want to deploy Parseable in local mode (store logs
6
+ replicaCount : 1
7
+ # # Set to true if you want to deploy Parseable in local mode (store logs
7
8
# # on local mount point instead of S3 bucket)
8
9
local : false
9
- # # Use this section to create ServiceMonitor object for
10
- # # this Parseable deployment. Read more on ServiceMonitor
11
- # # here: https://prometheus-operator.dev/docs/operator/design/#servicemonitor
12
- metrics :
13
- serviceMonitor :
14
- enabled : true
15
- namespace : " "
16
- interval : 30s
17
- scrapeTimeout : " "
18
- relabellings : []
19
- metricRelabelings : []
20
- honorLabels : false
21
- additionalLabels : {}
22
- podTargetLabels : []
23
- # # Add environment variables to the Parseable Deployment Pod
10
+ # # Add environment variables to the Parseable Deployment
24
11
env :
25
- # RUST_LOG: error
26
- # # Enable to create and configure log retention for logstreams
27
- logstream :
28
- # - name: "vectordemo"
29
- # retention:
30
- # action: "delete"
31
- # duration: "30d"
32
- # - name: "fluentbitdemo"
33
- # retention:
34
- # action: "delete"
35
- # duration: "30d"
36
- # # enable/disable persistence using PVC for the Data and Staging directories
12
+ RUST_LOG : warn
13
+ # # Enable to create a log stream and then add retention configuration
14
+ # # for that log stream
15
+ # logstream:
16
+ # - name: "vectordemo"
17
+ # retention:
18
+ # action: "delete"
19
+ # duration: "30d"
20
+ # - name: "fluentbitdemo"
21
+ # retention:
22
+ # action: "delete"
23
+ # duration: "30d"
24
+ # # enable persistence using PVC for the Data and Staging directories
37
25
# # Note that Data directory is needed only for local mode
38
26
persistence :
39
27
staging :
@@ -47,37 +35,34 @@ parseable:
47
35
accessMode : ReadWriteOnce
48
36
size : 1Gi
49
37
localModeSecret :
50
- - type : env
51
- name : parseable-env-secret
52
- prefix : P_
53
- keys :
54
- - addr
55
- - username
56
- - password
57
- - staging.dir
58
- - fs.dir
38
+ - type : env
39
+ name : parseable-env-secret
40
+ prefix : P_
41
+ keys :
42
+ - addr
43
+ - username
44
+ - password
45
+ - staging.dir
46
+ - fs.dir
59
47
s3ModeSecret :
60
- - type : env
61
- name : parseable-env-secret
62
- prefix : P_
63
- keys :
64
- # # Comment / uncomment the following lines as required
65
- # - tls.cert.path
66
- # - tls.key.path
67
- # - storage.upload.interval
68
- - addr
69
- - username
70
- - password
71
- - staging.dir
72
- - fs.dir
73
- - s3.url
74
- - s3.access.key
75
- - s3.secret.key
76
- - s3.bucket
77
- - s3.region
78
- replicaCount : 1
79
- nameOverride : " "
80
- fullnameOverride : " "
48
+ - type : env
49
+ name : parseable-env-secret
50
+ prefix : P_
51
+ keys :
52
+ # # Comment / uncomment the following lines as required
53
+ # - tls.cert.path
54
+ # - tls.key.path
55
+ # - storage.upload.interval
56
+ - addr
57
+ - username
58
+ - password
59
+ - staging.dir
60
+ - fs.dir
61
+ - s3.url
62
+ - s3.access.key
63
+ - s3.secret.key
64
+ - s3.bucket
65
+ - s3.region
81
66
serviceAccount :
82
67
create : true
83
68
name : " parseable"
@@ -103,9 +88,25 @@ parseable:
103
88
runAsGroup : 1000
104
89
fsGroup : 1000
105
90
fsGroupChangePolicy : " Always"
91
+ nameOverride : " "
92
+ fullnameOverride : " "
106
93
nodeSelector : {}
107
94
affinity : {}
108
95
tolerations : []
96
+ # # Use this section to create ServiceMonitor object for
97
+ # # this Parseable deployment. Read more on ServiceMonitor
98
+ # # here: https://prometheus-operator.dev/docs/operator/design/#servicemonitor
99
+ metrics :
100
+ serviceMonitor :
101
+ enabled : false
102
+ namespace : " "
103
+ interval : 30s
104
+ scrapeTimeout : " "
105
+ relabellings : []
106
+ metricRelabelings : []
107
+ honorLabels : false
108
+ additionalLabels : {}
109
+ podTargetLabels : []
109
110
110
111
# Default values for Vector
111
112
# See Vector helm documentation to learn more:
0 commit comments