-
Notifications
You must be signed in to change notification settings - Fork 4
/
values.yaml
860 lines (717 loc) Β· 21.7 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
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
# Default values for studio.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# -- Secret containing Docker registry credentials
imagePullSecrets: []
global:
# -- Studio: Hostname for accessing Studio (no http(s) scheme)
host: "studio.example.com"
# -- Studio: Base path (prefix)
basePath: ""
# -- Studio: Maximum number of views
maxViews: "100"
# -- Studio: Maximum number of teams
maxTeams: "10"
# -- Studio: Django SECRET_KEY to encrypt, DB, sign reaquests, etc
# We recommend you set and manage this externally as other secrets (e.g. DB
# password, user name, REDIS password, etc).
# If left empty, a random key will be generated. If it's not saved and lost
# it might be hard to recover the DB.
secretKey: ""
# -- (DEPRECATED) Studio: Custom CA certificate in PEM format
# Deprecated in favor of `customCaCerts`
# customCaCert: |-
# -----BEGIN CERTIFICATE-----
# ....
# -----END CERTIFICATE-----
#
customCaCert: ""
# -- Studio: Custom CA certificate in PEM format
# customCaCerts:
# - |-
# -----BEGIN CERTIFICATE-----
# ....
# -----END CERTIFICATE-----
#
customCaCerts: []
# -- Studio: Additional environment variables for all pods
envVars: {}
# Example:
# envVars:
# DEBUG: "True"
# -- Studio: The name of an existing Secret that contains sensitive environment variables
# passed to all Studio pods.
envFromSecret: ""
blobvault:
# -- Blobvault local backing store settings.
# Not used when `global.blobvault.bucket` is set.
persistentVolume:
# -- Blobvault local backing store access mode.
# @default -- ReadWriteOnce
accessModes:
- ReadWriteOnce
# -- Blobvault local backing store storage class.
# @default -- default storage class in the cluster.
storageClassName: ""
# -- Blobvault local backing store size.
size: 30Gi
# -- Blobvault S3 bucket name
bucket: ""
# -- Blobvault S3 endpoint URL
endpointUrl: ""
# -- Blobvault S3 access key ID
accessKeyId: ""
# -- Blobvault S3 secret access key ID
secretAccessKeyId: ""
# -- Blobvault S3 region
regionName: ""
celery:
# -- Celery broker URL
brokerUrl: ""
# -- Celery result URL
resultBackend: ""
# -- Studio: Settings related to DataChain
datachain: {}
ingress:
enabled: true
# -- Configure ingress resource to match hostnames to the service
hostnameEnabled: true
# -- Ingress class to use
className: ""
# -- Additional Ingress annotations
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# -- Expose studio under HTTPS protocol
tlsEnabled: false
# -- TLS secret name to use for HTTPS on Ingress
# For ALB Ingress Controller leave empty.
tlsSecretName: chart-example-tls
postgres:
# -- (DEPRECATED) Postgres database URL
databaseUrl: ""
# -- (DEPRECATED) Postgres database user
databaseUser: ""
# -- (DEPRECATED) Postgres database password
databasePassword: ""
# -- Postgres hostname
host: "studio-postgresql"
# -- Postgres port
port: "5432"
# -- Postgres database name
databaseName: "iterativeai"
# -- Postgres user
user: "postgres"
# -- Postgres password
password: "postgres"
scmProviders:
# -- Custom hostname for incoming webhook (if Studio runs on a private network and you use SaaS versions of GitHub, GitLab, or Bitbucket)
# @default -- `$global.host` value.
webhookHost: ""
# -- Enable HTTPS protocol for incoming webhooks (this works only if `global.scmProviders.webhookHost` is set; otherwise is ignored).
tlsEnabled: false
# -- GitHub App integration with Studio.
github:
# -- GitHub enabled
enabled: false
# -- GitHub Enterprise URL
# Set this if you're using the selfhosted version
url: ""
# -- GitHub Enterprise API URL
# Set this if you're using the selfhosted version
apiUrl: ""
# -- GitHub OAuth App Name
appName: ""
# -- GitHub OAuth App ID
appId: ""
# -- GitHub OAuth App Client ID
clientId: ""
# -- GitHub OAuth App Secret
clientSecret: ""
# -- GitHub OAuth App Private Key
privateKey: ""
# -- GitLab App integration with Studio.
gitlab:
# -- GitLab enabled
enabled: false
# -- GitLab Enterprise Edition URL
# Set this if you're using the selfhosted version
url: ""
# -- GitLab OAuth App Client ID
clientId: ""
# -- GitLab OAuth App Secret Key
secretKey: ""
# -- GitLab Webhook Secret
webhookSecret: ""
# -- BitBucket App integration with Studio.
bitbucket:
# -- Bitbucket enabled
enabled: false
# -- Bitbucket Server URL
# Set this if you're using the selfhosted version
url: ""
# -- Bitbucket Server API URL
# Set this if you're using the selfhosted version
apiUrl: ""
# -- Bitbucket OAuth App Client ID
clientId: ""
# -- Bitbucket OAuth App Secret Key
secretKey: ""
redis:
# -- Redis enabled
enabled: true
# -- Redis name override
fullnameOverride: studio-redis
# -- Redis master configuration
master:
## Redis® master resource requests and limits
## ref: https://kubernetes.io/docs/user-guide/compute-resources/
## @param master.resources.limits The resources limits for the Redis® master containers
## @param master.resources.requests The requested resources for the Redis® master containers
resources:
requests:
cpu: "200m"
memory: "512Mi"
limits:
cpu: "1000m"
memory: "2Gi"
# -- Redis master persistence configuration
persistence:
# -- Redis master persistence is disabled
enabled: false
# -- Redis replica configuration
replica:
# -- Redis replica count. 0 for standalone deployment of 1 master and 0 replicas
replicaCount: 0
# -- Redis replica persistence configuration
persistence:
# -- Redis replica persistence is disabled
enabled: false
# -- Redis common configuration to be added into the ConfigMap
commonConfiguration: |-
timeout 20
# -- Redis authentication settings
auth:
# -- Redis authentication disabled
enabled: false
postgresql:
# -- Postgres enabled
enabled: true
# -- Postgres name override
fullnameOverride: studio-postgresql
image:
tag: 14.5.0-debian-11-r35
# Change this before deploying
global:
postgresql:
auth:
# -- Postgres password
postgresPassword: postgres
# -- Postgres database
database: iterativeai
clickhouse:
# -- ClickHouse enabled
enabled: false
# -- ClickHouse name override
fullnameOverride: studio-clickhouse
# Shards / replicas configuration
replicaCount: 1
shards: 1
# Change this before deploying
auth:
# -- ClickHouse password
password: "clickhouse"
# -- PgBouncer settings group
pgBouncer:
enabled: false
# -- PgBouncer image settings
image:
# -- PgBouncer image repository
repository: docker.io/bitnami/pgbouncer
# -- PgBouncer image pull policy
pullPolicy: IfNotPresent
# -- PgBouncer image tag
tag: "1.22.1"
service:
type: ClusterIP
port: 6432
# -- Additional environment variables for PgBouncer pods
envVars: {}
# Example:
# envVars:
# DEBUG: "True"
# -- The name of an existing Secret that contains sensitive environment variables.
envFromSecret: ""
replicaCount: 1
# -- PgBouncer resources configuration
resources:
# -- PgBouncer requests configuration
requests:
cpu: 500m
memory: 512Mi
# -- PgBouncer limits configuration
limits:
memory: 1024Mi
# -- PgBouncer autoscaling configuration
autoscaling:
# -- PgBouncer autoscaling enabled flag
enabled: false
# -- PgBouncer autoscaling min replicas
minReplicas: 1
# -- PgBouncer autoscaling max replicas
maxReplicas: 5
# -- PgBouncer autoscaling target CPU utilization percentage
targetCPUUtilizationPercentage: 80
# -- PgBouncer autoscaling target memory utilization percentage
# targetMemoryUtilizationPercentage: 80
# -- Additional PgBouncer pod annotations
podAnnotations: {}
# -- PgBouncer pod security context configuration
podSecurityContext: {}
# fsGroup: 2000
# -- PgBouncer pod security context configuration
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
# -- PgBouncer service account name
serviceAccountName: ""
# -- PgBouncer pod node selector configuration
nodeSelector: {}
# -- PgBouncer pod tolerations configuration
tolerations: []
# -- PgBouncer pod affinity configuration
affinity: {}
# -- Studio UI settings group
studioUi:
# -- Additional environment variables for ui pods
envVars: {}
# Example:
# envVars:
# DEBUG: "True"
# -- The name of an existing Secret that contains sensitive environment variables
# passed to UI pods.
envFromSecret: ""
replicaCount: 1
image:
repository: docker.iterative.ai/studio-frontend
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
# tag: "v1.34.0"
service:
type: ClusterIP
port: 3000
resources:
requests:
cpu: 500m
memory: 1Gi
limits:
memory: 2Gi
strategy:
rollingUpdate:
maxUnavailable: 0
maxSurge: 1
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
nodeSelector: {}
tolerations: []
affinity: {}
# -- Studio Backend settings group
studioBackend:
# -- Additional environment variables for backend pods
envVars: {}
# Example:
# envVars:
# DEBUG: "True"
# -- The name of an existing Secret that contains sensitive environment variables
# passed to backend pods.
envFromSecret: ""
# -- Number of replicas of backend pods
replicaCount: 1
image:
repository: docker.iterative.ai/studio-backend
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
# tag: "v1.34.0"
service:
type: ClusterIP
port: 8000
resources:
requests:
cpu: 500m
memory: 1Gi
limits:
memory: 2Gi
strategy:
rollingUpdate:
maxUnavailable: 0
maxSurge: 1
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
nodeSelector: {}
tolerations: []
affinity: {}
# -- Studio Beat settings group
studioBeat:
# -- Additional environment variables for beat pods
envVars: {}
# Example:
# envVars:
# DEBUG: "True"
# -- The name of an existing Secret that contains sensitive environment variables
# passed to beat pods.
envFromSecret: ""
replicaCount: 1
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
memory: 256Mi
strategy:
rollingUpdate:
maxUnavailable: 0
maxSurge: 1
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
podAnnotations: {}
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
nodeSelector: {}
tolerations: []
affinity: {}
# -- Studio worker settings group
studioWorker:
# -- Studio worker image settings
image:
# -- Studio worker image repository
repository: docker.iterative.ai/studio-backend
# -- Studio worker image pull policy
pullPolicy: IfNotPresent
# -- Overrides the image tag whose default is the chart appVersion.
# tag: "v1.34.0"
# -- Additional environment variables for worker pods
envVars: {}
# Example:
# envVars:
# DEBUG: "True"
# -- The name of an existing Secret that contains sensitive environment variables
# passed to worker pods.
envFromSecret: ""
replicaCount: 1
# -- Worker log level
logLevel: "info"
# -- Worker resources configuration
resources:
# -- Worker resource requests configuration
requests:
cpu: 500m
memory: 512Mi
# -- Worker resource limits configuration
limits:
memory: 1Gi
# -- Worker deployment strategy
strategy:
rollingUpdate:
maxUnavailable: 0
maxSurge: 1
# -- Worker termination grace period
terminationGracePeriodSeconds: 150
# -- Worker autoscaling configuration
autoscaling:
# -- Worker autoscaling enabled flag
enabled: false
# -- Worker autoscaling minimum replicas
minReplicas: 1
# -- Worker autoscaling maximum replicas
maxReplicas: 5
# -- Worker autoscaling target CPU utilization percentage
# targetCPUUtilizationPercentage: 80
# -- Worker autoscaling target memory utilization percentage
# targetMemoryUtilizationPercentage: 80
# -- Worker autoscaling annotation
annotations: {}
# -- Worker Custom or additional autoscaling metrics
# Custom or additional autoscaling metrics
# ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#support-for-custom-metrics
template: []
# - type: External
# external:
# metric:
# name: celery-queue-length
# selector:
# matchLabels:
# type: prometheus
# target:
# type: Value
# value: "1"
# -- Worker autoscaling behavior
behavior: {}
# scaleUp:
# stabilizationWindowSeconds: 15
# policies:
# - type: Percent
# value: 100
# periodSeconds: 1
# - type: Pods
# value: 2
# periodSeconds: 1
# scaleDown:
# stabilizationWindowSeconds: 120
# policies:
# - type: Pods
# value: 1
# periodSeconds: 60
# -- Additional worker pod annotations
podAnnotations: {}
# -- Worker pod security context
podSecurityContext: {}
# fsGroup: 2000
# -- Worker security context
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
# -- Worker node selector
nodeSelector: {}
# -- Worker tolerations
tolerations: []
# -- Worker affinity
affinity: {}
serviceAccount:
# Specifies whether a service account should be created
create: false
# 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: ""
# -- Ephemeral storage configuration
ephemeralStorage:
# -- Ephemeral Storage type. Possible values: `emptyDir`, `ephemeral`, `pvc`, `pvcRWX`
type: ephemeral
# -- Ephemeral Storage size
size: 1Gi
# -- Persistent Volume Claim configuration for ephemeral storage (if type is set `pvc`)
persistentVolumeClaim:
# -- Persistent Volume Claim name, to mount externally managed PVC (`ephemeralStorage.type` has to be set to `pvc`)
claimName: "worker"
# -- Persistent Volume Claim `storageClass` name, by default it will use the default `storageClass`(not used when `pvc` is set as type)
storageClass: ""
# -- Studio DataChain Worker settings group
studioDatachainWorker:
# -- DataChain worker image settings
image:
# -- DataChain worker image repository
repository: docker.iterative.ai/studio-datachain-worker
# -- DataChain worker image pull policy
pullPolicy: IfNotPresent
# -- Overrides the image tag whose default is the chart appVersion.
# tag: "v1.34.0"
# -- Additional environment variables for DataChain worker pods
envVars: {}
# Example:
# envVars:
# DEBUG: "True"
# -- The name of an existing Secret that contains sensitive environment variables passed to
# DataChain worker pods.
envFromSecret: ""
replicaCount: 1
# -- DataChain worker log level
logLevel: "info"
# -- DataChain worker job quota
jobQuota: 10
# -- DataChain worker resources configuration
resources:
# -- DataChain worker requests configuration
requests:
cpu: 1000m
memory: 3Gi
ephemeral-storage: 10Gi
# -- DataChain worker limits configuration
limits:
memory: 16Gi
ephemeral-storage: 20Gi
# -- Ephemeral storage configuration
ephemeralStorage:
# -- Ephemeral Storage type. Possible values: `emptyDir`, `ephemeral`, `pvc`, `pvcRWX`
type: ephemeral
# -- Ephemeral Storage size
size: 20Gi
# -- Persistent Volume Claim configuration for ephemeral storage (if type is set `pvc`)
persistentVolumeClaim:
# -- Persistent Volume Claim name, to mount externally managed PVC (`ephemeralStorage.type` has to be set to `pvc`)
claimName: "datachain-worker"
# -- Persistent Volume Claim `storageClass` name, by default it will use the default `storageClass`(not used when `pvc` is set as type)
storageClass: ""
# -- Local storage configuration (used for storing DataChain virtual environments)
localStorage:
# -- Local Storage type. Possible values: `emptyDir`, `ephemeral`, `pvc`
type: ephemeral
# -- Local Storage size
size: 50Gi
# -- Persistent Volume Claim configuration for local storage
persistentVolumeClaim:
# -- Persistent Volume Claim name, to mount externally managed PVC (`localStorage.type` has to be set to `pvc`)
claimName: "datachain-worker-local"
# -- Persistent Volume Claim `storageClass` name, by default it will use the default `storageClass`(not used when `pvc` is set as type)
storageClass: ""
# -- DataChain worker deployment strategy
strategy:
rollingUpdate:
maxUnavailable: 0
maxSurge: 25%
# livenessProbe:
# # -- DataChain worker liveness probe `initialDelaySeconds`
# initialDelaySeconds: 10
# # -- DataChain worker liveness probe `periodSeconds`
# periodSeconds: 10
# # -- DataChain worker liveness probe `timeoutSeconds`
# timeoutSeconds: 10
# -- DataChain worker termination grace period
terminationGracePeriodSeconds: 180
# -- DataChain worker autoscaling configuration
autoscaling:
# -- DataChain worker autoscaling enabled flag
enabled: false
# -- DataChain worker autoscaling min replicas
minReplicas: 1
# -- DataChain worker autoscaling max replicas
maxReplicas: 5
# -- DataChain worker autoscaling target CPU utilization percentage
targetCPUUtilizationPercentage: 80
# -- DataChain worker autoscaling target memory utilization percentage
# targetMemoryUtilizationPercentage: 80
# -- Worker autoscaling annotation
annotations: {}
# -- DataChain worker Custom or additional autoscaling metrics
# Custom or additional autoscaling metrics
# ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#support-for-custom-metrics
template: []
# - type: External
# external:
# metric:
# name: celery-queue-length
# selector:
# matchLabels:
# type: prometheus
# target:
# type: Value
# value: "1"
# -- DataChain worker autoscaling behavior
behavior: {}
# scaleUp:
# stabilizationWindowSeconds: 15
# policies:
# - type: Percent
# value: 100
# periodSeconds: 1
# - type: Pods
# value: 2
# periodSeconds: 1
# scaleDown:
# stabilizationWindowSeconds: 120
# policies:
# - type: Pods
# value: 1
# periodSeconds: 60
# -- Additional DataChain worker pod annotations
podAnnotations: {}
# -- DataChain worker pod security context configuration
podSecurityContext: {}
# fsGroup: 2000
# -- DataChain worker pod security context configuration
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
# -- DataChain worker pod node selector configuration
nodeSelector: {}
# -- DataChain worker pod tolerations configuration
tolerations: []
# -- DataChain worker pod affinity configuration
affinity: {}
serviceAccount:
# Specifies whether a service account should be created
create: false
# 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: ""
# -- Studio: Additional service to expose the blobvault files generated by the worker
# It is enabled automatically if the worker is scaled to 1 replica and no bucket is configured
studioBlobvault:
# -- Image to use for the blobvault service
image:
# -- Image repository
repository: nginx
# -- Image tag
tag: 1.27.0-alpine
service:
port: 80
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
serviceAccount:
# Specifies whether a service account should be created
create: false
# 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: ""