Skip to content

Commit 87221b7

Browse files
authored
Disable ServiceMonitor by default (#428)
Also move some fields in the values file for better readability
1 parent ca1f427 commit 87221b7

File tree

1 file changed

+59
-58
lines changed

1 file changed

+59
-58
lines changed

helm/values.yaml

Lines changed: 59 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,25 @@ parseable:
33
repository: parseable/parseable
44
tag: v0.4.4
55
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
78
## on local mount point instead of S3 bucket)
89
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
2411
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
3725
## Note that Data directory is needed only for local mode
3826
persistence:
3927
staging:
@@ -47,37 +35,34 @@ parseable:
4735
accessMode: ReadWriteOnce
4836
size: 1Gi
4937
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
5947
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
8166
serviceAccount:
8267
create: true
8368
name: "parseable"
@@ -103,9 +88,25 @@ parseable:
10388
runAsGroup: 1000
10489
fsGroup: 1000
10590
fsGroupChangePolicy: "Always"
91+
nameOverride: ""
92+
fullnameOverride: ""
10693
nodeSelector: {}
10794
affinity: {}
10895
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: []
109110

110111
# Default values for Vector
111112
# See Vector helm documentation to learn more:

0 commit comments

Comments
 (0)