-
Notifications
You must be signed in to change notification settings - Fork 23
/
values.yaml
238 lines (214 loc) · 4.54 KB
/
values.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
version: 1.15.0
# apiUrl: mydomain.dev
# frontUrl: mydomain.dev
# Only for Development, Staging or PoC, you should use a managed Redis instance for Production
redis:
enabled: true
image:
tag: 6.2.14
replica:
replicaCount: 0
auth:
enabled: false
master:
service:
ports:
redis: 6379
# Only for Development, Staging or PoC, you should use a managed PostgreSQL instance for Production
postgresql:
enabled: true
global:
# Define your Lago Premium License
#license:
# If you use a managed PG instance
# Should respect this format postgresql://USER:PASSWORD@HOST:PORT/DATABASE_NAME
#databaseUrl:
# Should respect standard redis URL format redis://..., redis+sentinel://...
#redisUrl:
# If you wish to provide an existing secret with credentials in, then you can do so here.
# The following fields are required:
# - databaseUrl: <SEE FORMAT ABOVE>
# - redisUrl:
# - awsS3AccessKeyId:
# - awsS3SecretAccessKey:
# - smtpUsername:
# - smtpPassword:
#existingSecret: "lago-credentials"
# Not required if using existingSecret
postgresql:
auth:
username: lago
password: lago
database: lago
service:
ports:
postgresql: 5432
# You can disable segment tracking for Lago's internal purpose
segment:
enabled: true
s3:
enabled: false
# accessKeyId and secretAccessKey are not required here if using existingSecret
#accessKeyId: "<your-aws-access-key>"
#secretAccessKey: "<your-aws-secret-key>"
#bucket: "<your-aws-bucket>"
#region: "<your-aws-region>"
#endpoint: "https://s3.<region>.amazonaws.com" # Leave empty for default AWS S3 endpoint
smtp:
# username and password are not required here if using existingSecret
enabled: false
#address:
#username:
#password:
#port:
#fromEmail:
newRelic:
enabled: false
#key:
# You can disable Lago's signup
signup:
enabled: true
ingress:
enabled: false
#frontHostname:
#apiHostname:
#className:
networkPolicy:
enabled: false
egress: []
ingress: []
#serviceAccountName:
# If kubectlVersion is not supplied it will be inferred using the version of the cluster that Lago is deployed on.
#kubectlVersion: 1.29
front:
replicas: 1
service:
port: 80
resources:
requests:
memory: 512Mi
cpu: '200m'
podAnnotations: {}
podLabels: {}
extraEnv: {}
api:
replicas: 1
service:
port: 3000
rails:
maxThreads: 10
webConcurrency: 4
env: 'production'
logStdout: true
logLevel: error
sidekiqWeb:
enabled: true
resources:
requests:
memory: 1Gi
cpu: '1000m'
volumes:
accessModes: ReadWriteOnce
storage: '10Gi'
extraEnv: {}
podAnnotations: {}
podLabels: {}
worker:
replicas: 1
rails:
sidekiqConcurrency: 100
env: 'production'
logStdout: true
logLevel: error
resources:
requests:
memory: 1Gi
cpu: '1000m'
podAnnotations: {}
podLabels: {}
extraEnv: {}
livenessProbe:
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
eventsWorker:
replicas: 1
rails:
sidekiqConcurrency: 100
env: 'production'
logStdout: true
logLevel: error
resources:
requests:
memory: 1Gi
cpu: '1000m'
podAnnotations: {}
podLabels: {}
extraEnv: {}
livenessProbe:
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
clock:
replicas: 1
rails:
env: 'production'
logStdout: true
logLevel: info
resources:
requests:
memory: 256Mi
cpu: '100m'
podAnnotations: {}
podLabels: {}
extraEnv: {}
pdf:
replicas: 1
service:
port: 3001
resources:
requests:
memory: 2Gi
cpu: '1000m'
podAnnotations: {}
podLabels: {}
extraEnv: {}
job:
migrate:
nameOverride: null
podAnnotations: {}
podLabels: {}
resources: {}
minio:
enabled: false
# replicas: 2
# fullnameOverride: "my-lago-minio"
# endpoint: "http://minio.lago.dev"
# nameOverride: "minio"
# resources:
# requests:
# memory: "512Mi"
# cpu: "500m"
# limits:
# memory: "1Gi"
# cpu: "1"
# persistence:
# size: 10Gi
# ingress:
# enabled: true
# ingressClassName: nginx
# labels: {}
# annotations: {}
# path: /
# hosts:
# - minio.lago.dev
# tls: []
# Note : only the first one will be used
# buckets:
# - name: my-lago-minio
# policy: none
# purge: false
# versioning: false
# objectlocking: false