forked from fmjstudios/helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
685 lines (621 loc) · 23.6 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
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
# Default Helm values for fmjstudios/activepieces.
# Reference: https://github.com/fmjstudios/helm
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
## @section Activepieces Image parameters
##
## Activepieces Server Image
## ref: https://hub.docker.com/r/binwiederhier/activepieces
## @param image.registry The Docker registry to pull the image from
## @param image.repository The registry repository to pull the image from
## @param image.tag The image tag to pull
## @param image.digest The image digest to pull
## @param image.pullPolicy The Kubernetes image pull policy
## @param image.pullSecrets A list of secrets to use for pulling images from private registries
image:
registry: docker.io
repository: activepieces/activepieces
tag: 0.28.0
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## e.g:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
## @section Name overrides
##
## @param nameOverride String to partially override activepieces.fullname
##
nameOverride: ""
## @param fullnameOverride String to fully override activepieces.fullname
##
fullnameOverride: ""
## @section Workload overrides
##
## @param kind The kind of workload to deploy Activepieces as (`StatefulSet` or `Deployment`)
##
kind: StatefulSet
## @section Activepieces Configuration parameters
##
## Activepieces configuration
## ref: https://www.activepieces.com/docs/install/configurations/environment-variables
activepieces:
## @param activepieces.domain The public facing domain name for the Activepieces service, reused in Ingress.
##
domain: localhost
## @param activepieces.configPath Specify the path to store SQLite3 and local settings, prefixed with activepieces.data.rootPath
##
configPath: ""
## @param activepieces.database Specify the path to store SQLite3 and local settings. Values are `sqlite3` or `postgres`.
##
database: sqlite3
## Data configuration
##
data:
## @param activepieces.data.rootPath [default: /var/lib/ntfy] The root path for ntfy to store its' files
##
rootPath: /var/lib/activepieces
## Kubernetes PVC settings
##
pvc:
## @param activepieces.data.pvc.size [default: 5Gi] The size given to the new PVC
##
size: 5Gi
## @param activepieces.data.pvc.storageClass [default: standard] The storageClass given to the new PVC
##
storageClass: standard
## @param activepieces.data.pvc.reclaimPolicy [default: Retain] The resourcePolicy given to the new PVC
##
reclaimPolicy: Retain
## @param activepieces.data.pvc.existingClaim [string] Provide the name to an existing PVC
##
existingClaim: ""
## PostgreSQL configuration
##
postgresql:
## @param activepieces.postgresql.database The name of the PostgreSQL database
##
database: activepieces
## @param activepieces.postgresql.host The hostname or IP address of the PostgreSQL server
##
host: activepieces-postgresql
## @param activepieces.postgresql.port The port number for the PostgreSQL server
##
port: 5432
## @param activepieces.postgresql.username The username for the PostgreSQL user
##
username: activepieces
## @param activepieces.postgresql.password The password for the PostgreSQL server
##
password: activepieces
## @param activepieces.postgresql.existingSecret The name of an existing `basic-auth` Secret to use the credentials from
##
existingSecret: ""
## @param activepieces.postgresql.useSSL Use SSL to connect to the PostgreSQL database
##
useSSL: false
## @param activepieces.postgresql.sslCA Use SSL Certificate to connect to the postgres database
##
sslCA: ""
## Redis configuration
##
redis:
## @param activepieces.redis.database The name of the Redis database
##
database: 0
## @param activepieces.redis.host The hostname or IP address of the Redis server
##
host: activepieces-redis-master
## @param activepieces.redis.port The port number for the Redis server
##
port: 6379
## @param activepieces.redis.username The username for the Redis user
##
username: ""
## @param activepieces.redis.password The password for the Redis server
##
password: activepieces
## @param activepieces.redis.existingSecret The name of an existing `basic-auth` Secret to use the credentials from
##
existingSecret: ""
## @param activepieces.redis.useSSL Use SSL to connect to the Redis database
##
useSSL: false
## Queue configuration
##
queue:
## @param activepieces.queue.mode The queue mode to use. Valid values are `memory` and `redis`.
##
mode: memory
## @param activepieces.queue.enableUI Enable the queue UI (only works with redis)
##
enableUI: false
## @param activepieces.queue.username The username for the queue UI
##
username: ""
## @param activepieces.queue.password The password for the queue UI
##
password: ""
## @param activepieces.queue.existingSecret The name of an existing `basic-auth` Secret to use the credentials from
##
existingSecret: ""
## Pieces configuration
##
pieces:
## @param activepieces.pieces.source Define the source for pieces: `FILE` for local development, `DB` for database.
## ref: https://www.activepieces.com/docs/install/configurations/environment-variables#setting-piece-source
##
source: CLOUD_AND_DB
## @param activepieces.pieces.syncMode Define the syncing method for Activepieces to download and use pieces.
## `NONE` for no metadata syncing / ‘OFFICIAL_AUTO’ for automatic syncing for pieces metadata from cloud
##
syncMode: OFFICIAL_AUTO
## CoPilot configuration
##
copilot:
## @param activepieces.copilot.instanceType Define the instance type. Possible values are `AZURE_OPENAI`, `OPENAI`.
##
instanceType: OPENAI
## OpenAI configuration
##
openAI:
## @param activepieces.copilot.openAI.apiKey Define the OpenAI API key. This is required only if you want to enable code copilot
##
apiKey: ""
## @param activepieces.copilot.openAI.endpoint Define the OpenAI Endpoint. This is required only if you want to enable code copilot
##
endpoint: ""
## @param activepieces.copilot.openAI.apiVersion Define the OpenAI API version. This is required only if you want to enable code copilot
##
apiVersion: ""
## @param activepieces.copilot.openAI.existingSecret The name of an existing Secret containing a `apiKey`
##
existingSecret: ""
## Encryption configuration
##
encryption:
## @param activepieces.encryption.connection The encryption key used for connections
##
connection: ""
## @param activepieces.encryption.jwt Encryption key used for generating JWT tokens
##
jwt: ""
## @param activepieces.encryption.existingSecret The name of an existing Secret containing a `connection` and `jwt` key, from which the encryption keys will be sourced
##
existingSecret: ""
## Sandbox configuration
##
sandbox:
## @param activepieces.sandbox.executionMode Define the execution mode. Valid values are `UNSANDBOXED` and `SANDBOXED`
##
executionMode: UNSANDBOXED
## @param activepieces.sandbox.runTimeSeconds Maximum allowed runtime for a flow
##
runTimeSeconds: false
## @param activepieces.sandbox.propagatedEnvVars Environment variables that will be propagated to the sandboxed code.
## If you are using it for pieces, we strongly suggests keeping everything in the authentication object to make sure it works across AP instances
##
propagatedEnvVars: ""
## @param activepieces.dataRetentionDays The number of days to retain execution data, logs and events
##
dataRetentionDays: ""
## @param activepieces.workerConcurrency The number of flows to be processed at the same time
##
workerConcurrency: 10
## @param activepieces.triggerPollInterval The polling interval determines how frequently the system checks for new data updates for pieces with scheduled triggers
##
triggerPollInterval: 5
## @param activepieces.enableCloudAuth Enable the utilization of oAuth2 applications
##
enableCloudAuth: true
## @param activepieces.telemetry Enable the collection of telemetry information
##
telemetry: false
## @param activepieces.templateSourceURL The endpoint which is queried for templates, remove this and templates will be removed from the UI.
##
templateSourceURL: "https://cloud.activepieces.com/api/v1/flow-templates"
## @param activepieces.webhookTimeoutSeconds The default timeout for webhooks
##
webhookTimeoutSeconds: 30
## @section ConfigMap parameters
##
## Activepieces ConfigMap settings
## @param configMap.annotations Annotations for the ConfigMap resource
## @param configMap.labels Extra Labels for the ConfigMap resource
configMap:
annotations: { }
labels: { }
## @section Common Secret parameters
##
## Activepieces Common Secret settings
## @param secret.annotations Common annotations for the SMTP, HIBP, Admin and Database secrets
## @param secret.labels Common extra labels for the SMTP, HIBP, Admin and Database secrets
secret:
annotations: { }
labels: { }
## @section Ingress parameters
##
## Activepieces Ingress settings
## @param ingress.enabled Whether to enable Ingress
## @param ingress.className The IngressClass to use for the pod's ingress
## @param ingress.whitelist A comma-separated list of IP addresses to whitelist
## @param ingress.annotations Annotations for the Ingress resource
## @param ingress.tls A list of hostnames and secret names to use for TLS
## @param ingress.extraHosts A list of extra hosts for the Ingress resource (with activepieces.baseURL)
ingress:
enabled: false
className: ""
whitelist: ""
annotations: { }
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
extraHosts:
[]
# - host: domain.tld
# paths:
# - path: /
# pathType: ImplementationSpecific
## @section Service parameters
##
## Activepieces Service settings
service:
## @param service.type [default: ClusterIP] The type of service to create
##
type: ClusterIP
## @param service.port [default: 80] The port to use on the service
##
port: 8080
## @param service.nodePort [default: 30080] The Node port to use on the service
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
## NOTE: choose port between <30000-32767>
##
nodePort: 30080
## @param service.extraPorts Extra ports to add to the service
## https://kubernetes.io/docs/concepts/services-networking/service/#multi-port-services
## e.g.
## extraPorts:
## - name: https
## protocol: TCP
## port: 443
## targetPort: 9377
##
extraPorts: []
## @param service.annotations [object] Annotations for the service resource
##
annotations: { }
## @param service.labels [object] Labels for the service resource
##
labels: { }
## @param service.externalTrafficPolicy [default: Cluster] The external traffic policy for the service
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
externalTrafficPolicy: Cluster
## @param service.internalTrafficPolicy [default: Cluster] The internal traffic policy for the service
## ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
##
internalTrafficPolicy: Cluster
## @param service.clusterIP [string] Define a static cluster IP for the service
##
clusterIP: ""
## @param service.loadBalancerIP Set the Load Balancer IP
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
##
loadBalancerIP: ""
## @param service.loadBalancerClass Define Load Balancer class if service type is `LoadBalancer` (optional, cloud specific)
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer
##
loadBalancerClass: ""
## @param service.loadBalancerSourceRanges Service Load Balancer source ranges
## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## e.g.
## loadBalancerSourceRanges:
## - 10.10.10.0/24
##
loadBalancerSourceRanges: []
## @param service.externalIPs Service External IPs
## https://kubernetes.io/docs/concepts/services-networking/service/#external-ips
## e.g.
## externalIPs:
## - 10.10.10.1
## - 201.22.30.1
##
externalIPs: []
## @param service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP"
## If "ClientIP", consecutive client requests will be directed to the same Pod
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
##
sessionAffinity: None
## @param service.sessionAffinityConfig Additional settings for the sessionAffinity
## sessionAffinityConfig:
## clientIP:
## timeoutSeconds: 300
##
sessionAffinityConfig: { }
## @param service.ipFamilyPolicy [object] The ipFamilyPolicy
## ref: https://kubernetes.io/docs/concepts/services-networking/dual-stack/
##
ipFamilyPolicy: ""
## @section RBAC parameters
##
## Activepieces RBAC settings
## @param rbac.create Whether to create RBAC resources
## @param rbac.rules Extra rules to add to the Role
##
rbac:
create: true
rules: []
## @section Service Account parameters
##
## Activepieces Service Account settings
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
## @param serviceAccount.create Whether a service account should be created
## @param serviceAccount.automount Whether to automount the service account token
## @param serviceAccount.annotations Annotations to add to the service account
## @param serviceAccount.name A custom name for the service account, otherwise activepieces.fullname is used
## @param serviceAccount.secrets A list of secrets mountable by this service account
##
serviceAccount:
create: true
automount: false
annotations: { }
name: ""
secrets: []
## @section Liveness Probe parameters
##
## Activepieces Liveness Probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
##
livenessProbe:
## @param livenessProbe.enabled Enable or disable the use of liveness probes
##
enabled: false
## @param livenessProbe.initialDelaySeconds Configure the initial delay seconds for the liveness probe
##
initialDelaySeconds: 5
## @param livenessProbe.timeoutSeconds Configure the initial delay seconds for the liveness probe
##
timeoutSeconds: 1
## @param livenessProbe.periodSeconds Configure the seconds for each period of the liveness probe
##
periodSeconds: 10
## @param livenessProbe.successThreshold Configure the success threshold for the liveness probe
##
successThreshold: 1
## @param livenessProbe.failureThreshold Configure the failure threshold for the liveness probe
##
failureThreshold: 10
## @section Readiness Probe parameters
##
## Activepieces Readiness Probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
##
readinessProbe:
## @param readinessProbe.enabled Enable or disable the use of readiness probes
##
enabled: false
## @param readinessProbe.initialDelaySeconds Configure the initial delay seconds for the readiness probe
##
initialDelaySeconds: 5
## @param readinessProbe.timeoutSeconds Configure the initial delay seconds for the readiness probe
##
timeoutSeconds: 1
## @param readinessProbe.periodSeconds Configure the seconds for each period of the readiness probe
##
periodSeconds: 10
## @param readinessProbe.successThreshold Configure the success threshold for the readiness probe
##
successThreshold: 1
## @param readinessProbe.failureThreshold Configure the failure threshold for the readiness probe
##
failureThreshold: 3
## @section Startup Probe parameters
##
## Activepieces Startup Probe
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
##
startupProbe:
## @param startupProbe.enabled Enable or disable the use of readiness probes
##
enabled: false
## @param startupProbe.initialDelaySeconds Configure the initial delay seconds for the startup probe
##
initialDelaySeconds: 5
## @param startupProbe.timeoutSeconds Configure the initial delay seconds for the startup probe
##
timeoutSeconds: 1
## @param startupProbe.periodSeconds Configure the seconds for each period of the startup probe
##
periodSeconds: 10
## @param startupProbe.successThreshold Configure the success threshold for the startup probe
##
successThreshold: 1
## @param startupProbe.failureThreshold Configure the failure threshold for the startup probe
##
failureThreshold: 10
## @section PodDisruptionBudget parameters
##
## Activepieces pod disruption budget settings
## ref: # https://kubernetes.io/docs/tasks/run-application/configure-pdb/
## @param podDisruptionBudget.enabled [default: true] Enable the pod disruption budget
## @param podDisruptionBudget.minAvailable [default: 1] The minium amount of pods which need to be available
##
podDisruptionBudget:
enabled: false
minAvailable: 1
# maxUnavailable:
## @section Pod settings
##
## Activepieces resource settings
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param resources The resource limits/requests for the Activepieces pod
##
resources:
{ }
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
## ref: https://kubernetes.io/docs/concepts/storage/volumes/
## @param volumes Define volumes for the Activepieces pod
##
volumes: []
## ref: https://kubernetes.io/docs/concepts/storage/volumes/
## @param volumeMounts Define volumeMounts for the Activepieces pod
##
volumeMounts: []
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## @param initContainers Define initContainers for the main Activepieces server
##
initContainers: []
## @param nodeSelector Node labels for pod assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: { }
## @param tolerations Tolerations for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## @param affinity Affinity for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: { }
## @param strategy Specify a deployment strategy for the Activepieces pod
##
strategy:
{ }
# type: RollingUpdate
# rollingUpdate:
# maxUnavailable: 1
## @param podAnnotations Extra annotations for the Activepieces pod
##
podAnnotations: { }
## @param podLabels Extra labels for the Activepieces pod
##
podLabels: { }
# pod-security.kubernetes.io/warn: privileged
# pod-security.kubernetes.io/audit: privileged
# pod-security.kubernetes.io/enforce: baseline
## @param priorityClassName The name of an existing PriorityClass
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/
##
priorityClassName: ""
## @section Security context settings
##
## @param podSecurityContext Security context settings for the Activepieces pod
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
##
podSecurityContext:
{ }
# fsGroup: 1001
# supplementalGroups:
# - 1001
## @param securityContext General security context settings for
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
##
securityContext:
{ }
# allowPrivilegeEscalation: false
# privileged: false
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsGroup: 1001
# runAsUser: 1001
# capabilities:
# drop:
# - ALL
## @section Bitnami® PostgreSQL parameters
##
## PostgreSQL configuration
## ref: https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml
postgresql:
## @param postgresql.enabled Enable or disable the PostgreSQL subchart
##
enabled: false
## Authentication parameters
## ref: https://github.com/bitnami/containers/tree/main/bitnami/postgresql#setting-the-root-password-on-first-run
## ref: https://github.com/bitnami/containers/tree/main/bitnami/postgresql#creating-a-database-on-first-run
## ref: https://github.com/bitnami/containers/tree/main/bitnami/postgresql#creating-a-database-user-on-first-run
##
auth:
## @param postgresql.auth.enablePostgresUser Assign a password to the "postgres" admin user. Otherwise, remote access will be blocked for this user
##
enablePostgresUser: true
## @param postgresql.auth.postgresPassword Password for the "postgres" admin user. Ignored if `auth.existingSecret` is provided
##
postgresPassword: activepieces
## @param postgresql.auth.username Name for a custom user to create
##
username: activepieces
## @param postgresql.auth.password Password for the custom user to create. Ignored if `auth.existingSecret` is provided
##
password: activepieces
## @param postgresql.auth.database Name for a custom database to create
##
database: activepieces
## @param postgresql.auth.usePasswordFiles Mount credentials as a files instead of using an environment variable
##
usePasswordFiles: false
## PostgreSQL Primary parameters
##
primary:
## @param postgresql.primary.name Name of the primary database (eg primary, master, leader, ...)
##
name: primary
## PostgreSQL Primary persistence configuration
##
persistence:
## @param postgresql.primary.persistence.enabled Enable PostgreSQL Primary data persistence using PVC
##
enabled: true
## @param postgresql.primary.persistence.existingClaim Name of an existing PVC to use
##
existingClaim: ""
## @param postgresql.primary.persistence.storageClass PVC Storage Class for PostgreSQL Primary data volume
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
storageClass: ""
## @param postgresql.primary.persistence.accessModes PVC Access Mode for PostgreSQL volume
##
accessModes:
- ReadWriteOnce
## @param postgresql.primary.persistence.size PVC Storage Request for PostgreSQL volume
##
size: 5Gi
## @section Bitnami® Redis parameters
##
## Redis configuration
## ref: https://github.com/bitnami/charts/blob/main/bitnami/redis/values.yaml
redis:
## @param redis.enabled Enable or disable the Redis® subchart
##
enabled: false
## @param redis.architecture Redis® architecture. Allowed values: `standalone` or `replication`
##
architecture: standalone
## Redis® Authentication parameters
## ref: https://github.com/bitnami/containers/tree/main/bitnami/redis#setting-the-server-password-on-first-run
##
auth:
## @param redis.auth.password Redis® password
password: "activepieces"
## @param redis.auth.usePasswordFiles Mount credentials as files instead of using an environment variable
##
usePasswordFiles: true