-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathvalues.yaml
More file actions
409 lines (339 loc) · 12.2 KB
/
Copy pathvalues.yaml
File metadata and controls
409 lines (339 loc) · 12.2 KB
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
# -- Provide a name in place of `baserow`
nameOverride: ""
# -- String to fully override `"baserow.fullname"`
fullnameOverride: ""
api:
image:
# -- image registry
registry: docker.io
# -- image repository
repository: countly/api
# -- image pull policy
pullPolicy: Always
# -- Overrides the image tag
tag: "25.05.4"
# -- If defined, uses a Secret to pull an image from a private Docker registry or repository.
imagePullSecrets: []
# -- Annotations to be added to the frontend pods
podAnnotations: {}
# -- pod-level security context
podSecurityContext: {}
# -- Pod priority class name
priorityClassName: ""
# -- Number of replicas
replicaCount: 1
# -- The number of old ReplicaSets to retain
revisionHistoryLimit: 10
# -- Resource limits and requests for the controller pods.
# @default -- see [values.yaml](./values.yaml)
resources:
limits:
memory: 2Gi
requests:
cpu: 200m
memory: 400Mi
# -- container-level security context
securityContext: {}
serviceAccount:
# -- Specifies whether a service account should be created
create: true
# -- Annotations to add to the service account
annotations: {}
# -- The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
service:
# -- Kubernetes service type
type: ClusterIP
# -- Kubernetes port where service is exposed
port: 3000
# BETA: Configure the gateway routes for the chart here.
# More routes can be added by adding a dictionary key like the 'main' route.
# Being BETA this can/will change in the future without notice, do not use unless you want to take that risk
# [[ref]](https://gateway-api.sigs.k8s.io/references/spec/#gateway.networking.k8s.io%2fv1alpha2)
route:
main:
# -- Enables or disables the route
enabled: false
# -- Set the route apiVersion, e.g. gateway.networking.k8s.io/v1 or gateway.networking.k8s.io/v1alpha2
apiVersion: gateway.networking.k8s.io/v1
# -- Set the route kind
# Valid options are GRPCRoute, HTTPRoute, TCPRoute, TLSRoute, UDPRoute
kind: HTTPRoute
# -- Add annotations to the route
annotations: {}
# -- Add labels to the route
labels: {}
# -- Hostnames to be matched
hostnames: []
# - my-filter.example.com
# -- Parent references (Gateway)
parentRefs: []
# - name: acme-gw
# -- define conditions used for matching the rule against incoming HTTP requests.
# @default -- see [values.yaml](./values.yaml)
matches:
- path:
type: PathPrefix
value: /i
- path:
type: PathPrefix
value: /i/*
- path:
type: PathPrefix
value: /o
- path:
type: PathPrefix
value: /o/*
# -- Filters define the filters that are applied to requests that match this rule.
filters: []
# -- Additional custom rules that can be added to the route
additionalRules: []
# -- adds a filter for redirecting to https (HTTP 301 Moved Permanently). To redirect HTTP traffic to HTTPS, you need to have a Gateway with both HTTP and HTTPS listeners. Matches and filters do not take effect if enabled. Ref. https://gateway-api.sigs.k8s.io/guides/http-redirect-rewrite/
httpsRedirect: false
# -- defines the timeouts that can be configured for an HTTP request
timeouts: {}
autoscaling:
# -- Enable Horizontal POD autoscaling
enabled: false
# -- Minimum number of replicas
minReplicas: 1
# -- Maximum number of replicas
maxReplicas: 100
# -- Target CPU utilization percentage
targetCPUUtilizationPercentage: 80
# -- Target Memory utilization percentage
targetMemoryUtilizationPercentage: 80
livenessProbe:
# -- Failure threshold for livenessProbe
failureThreshold: 6
# -- Initial delay seconds for livenessProbe
initialDelaySeconds: 60
# -- Period seconds for livenessProbe
periodSeconds: 30
# -- Success threshold for livenessProbe
successThreshold: 1
# -- Timeout in seconds for livenessProbe
timeoutSeconds: 2
readinessProbe:
# -- Failure threshold for readinessProbe
failureThreshold: 6
# -- Initial delay seconds for readinessProbe
initialDelaySeconds: 60
# -- Period seconds for readinessProbe
periodSeconds: 30
# -- Success threshold for readinessProbe
successThreshold: 1
# -- Timeout in seconds for readinessProbe
timeoutSeconds: 2
# -- Node labels for pod assignment
nodeSelector: {}
# -- Toleration labels for pod assignment
tolerations: []
# -- Affinity settings for pod assignment
affinity: {}
# -- Additional labels to add to the pod
selectorLabels: {}
# -- additional environment variables to be added to the api pods
extraEnv: []
frontend:
image:
# -- image registry
registry: docker.io
# -- image repository
repository: countly/frontend
# -- image pull policy
pullPolicy: Always
# -- Overrides the image tag
tag: "25.05.4"
# -- If defined, uses a Secret to pull an image from a private Docker registry or repository.
imagePullSecrets: []
# -- Annotations to be added to the frontend pods
podAnnotations: {}
# -- pod-level security context
podSecurityContext: {}
# -- Pod priority class name
priorityClassName: ""
# -- Number of replicas
replicaCount: 1
# -- The number of old ReplicaSets to retain
revisionHistoryLimit: 10
# -- Resource limits and requests for the controller pods.
# @default -- see [values.yaml](./values.yaml)
resources:
limits:
cpu: 500m
memory: 500Mi
requests:
cpu: 100m
memory: 100Mi
# -- container-level security context
securityContext: {}
serviceAccount:
# -- Specifies whether a service account should be created
create: true
# -- Annotations to add to the service account
annotations: {}
# -- The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
service:
# -- Kubernetes service type
type: ClusterIP
# -- Kubernetes port where service is exposed
port: 3000
# BETA: Configure the gateway routes for the chart here.
# More routes can be added by adding a dictionary key like the 'main' route.
# Being BETA this can/will change in the future without notice, do not use unless you want to take that risk
# [[ref]](https://gateway-api.sigs.k8s.io/references/spec/#gateway.networking.k8s.io%2fv1alpha2)
route:
main:
# -- Enables or disables the route
enabled: false
# -- Set the route apiVersion, e.g. gateway.networking.k8s.io/v1 or gateway.networking.k8s.io/v1alpha2
apiVersion: gateway.networking.k8s.io/v1
# -- Set the route kind
# Valid options are GRPCRoute, HTTPRoute, TCPRoute, TLSRoute, UDPRoute
kind: HTTPRoute
# -- Add annotations to the route
annotations: {}
# -- Add labels to the route
labels: {}
# -- Hostnames to be matched
hostnames: []
# - my-filter.example.com
# -- Parent references (Gateway)
parentRefs: []
# - name: acme-gw
# -- define conditions used for matching the rule against incoming HTTP requests.
# @default -- see [values.yaml](./values.yaml)
matches:
- path:
type: PathPrefix
value: /
- path:
type: PathPrefix
value: /images/
# -- Filters define the filters that are applied to requests that match this rule.
filters: []
# -- Additional custom rules that can be added to the route
additionalRules: []
# -- adds a filter for redirecting to https (HTTP 301 Moved Permanently). To redirect HTTP traffic to HTTPS, you need to have a Gateway with both HTTP and HTTPS listeners. Matches and filters do not take effect if enabled. Ref. https://gateway-api.sigs.k8s.io/guides/http-redirect-rewrite/
httpsRedirect: false
# -- defines the timeouts that can be configured for an HTTP request
timeouts: {}
autoscaling:
# -- Enable Horizontal POD autoscaling
enabled: false
# -- Minimum number of replicas
minReplicas: 1
# -- Maximum number of replicas
maxReplicas: 100
# -- Target CPU utilization percentage
targetCPUUtilizationPercentage: 80
# -- Target Memory utilization percentage
targetMemoryUtilizationPercentage: 80
livenessProbe:
# -- Failure threshold for livenessProbe
failureThreshold: 6
# -- Initial delay seconds for livenessProbe
initialDelaySeconds: 60
# -- Period seconds for livenessProbe
periodSeconds: 30
# -- Success threshold for livenessProbe
successThreshold: 1
# -- Timeout in seconds for livenessProbe
timeoutSeconds: 2
readinessProbe:
# -- Failure threshold for readinessProbe
failureThreshold: 6
# -- Initial delay seconds for readinessProbe
initialDelaySeconds: 60
# -- Period seconds for readinessProbe
periodSeconds: 30
# -- Success threshold for readinessProbe
successThreshold: 1
# -- Timeout in seconds for readinessProbe
timeoutSeconds: 2
# -- Node labels for pod assignment
nodeSelector: {}
# -- Toleration labels for pod assignment
tolerations: []
# -- Affinity settings for pod assignment
affinity: {}
# -- Additional labels to add to the pod
selectorLabels: {}
# -- additional environment variables to be added to the frontend pods
extraEnv: []
# -- additional environment variables to be added to both api and frontend pods
extraEnv: []
# General configuration shared between the frontend and api
config:
api:
# @ignored
filestorage: "gridfs"
mail:
# -- Enable sending of emails
enabled: false
auth:
# -- Use existing secret for password details. The secret has to contain the key `mail-password`. When it's set the `config.api.mail.auth.password` is ignored.
existingSecret: ""
# -- The password to authenticate to the smtp host when sending emails.
password: ""
# -- The username to authenticate to the smtp host when sending emails.
username: ""
# -- The email address Countly will send emails from.
from: ""
# -- The host of the external SMTP server that Countly should use to send emails.
host: ""
# -- The port used to connect to the smtp host.
port: 0
# @ignored
workerCount: "1"
# @ignored
nodeOptions: "--max-old-space-size=2048"
# @ignored
plugins: "mobile,web,desktop,plugins,density,locale,browser,sources,views,logger,systemlogs,populator,reports,crashes,push,star-rating,slipping-away-users,compare,server-stats,dbviewer,times-of-day,compliance-hub,alerts,onboarding,consolidate,remote-config,hooks,dashboards,sdk,data-manager,guides"
ingress:
# -- Enable ingress record generation
enabled: false
# -- IngressClass that will be be used to implement the Ingress
className: ""
# -- Additional annotations for the Ingress resource
annotations: {}
# cert-manager.io/cluster-issuer: cluster-issuer-name
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# -- The publicly reachable hostname
hostname: ""
# -- Valid values: ImplementationSpecific, Exact, Prefix
pathType: "Prefix"
# -- An array with the tls configuration
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
mongodb:
# -- enable MongoDB™ subchart from Bitnami
enabled: true
# -- MongoDB™ architecture. Currently only standalone is supported by this Chart.
architecture: standalone
auth:
# -- Enable authentication
enabled: false
# -- Name for a custom database to create
database: countly
# @ignored this is only required for the Bitnami MongoDB Subchart
password: countly
# @ignored this is only required for the Bitnami MongoDB Subchart
username: countly
# -- Set to true to use a StatefulSet instead of a Deployment (only when `architecture=standalone`)
useStatefulSet: true
externalMongodb:
auth:
# -- Name for a custom database to use
database: countly
# -- Hostname of the MongoDB database
hostname: ""
# -- Port used to connect to MongoDB database
port: 27017