-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathvalues.schema.json
More file actions
1408 lines (1408 loc) · 45.7 KB
/
values.schema.json
File metadata and controls
1408 lines (1408 loc) · 45.7 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
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
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"nameOverride": {
"type": "string",
"title": "Name Override",
"description": "partially overrides common.names.name"
},
"fullnameOverride": {
"type": "string",
"title": "Fullname Override",
"description": "fully override common.names.fullname"
},
"namespaceOverride": {
"type": "string",
"title": "Namespace Override",
"description": "fully override common.names.namespace"
},
"commonLabels": {
"type": "object",
"title": "Common Labels",
"description": "labels to add to all deployed objects"
},
"commonAnnotations": {
"type": "object",
"title": "Common Annotations",
"description": "annotations to add to all deployed objects"
},
"common": {
"type": "object",
"title": "Common",
"description": "common configuration. Not set by user but required as common vars are passed to all manifests."
},
"global": {
"type": "object",
"title": "Global",
"description": "global configuration",
"properties": {
"prefect": {
"type": "object",
"title": "Prefect",
"description": "global prefect configuration",
"additionalProperties": true,
"properties": {
"image": {
"type": "object",
"properties": {
"repository": {
"type": "string",
"description": "prefect image repository"
},
"prefectTag": {
"type": "string",
"description": "prefect image tag (immutable tags are recommended)"
},
"pullPolicy": {
"type": "string",
"description": "prefect image pull policy"
},
"pullSecrets": {
"type": "array",
"description": "prefect image pull secrets",
"items": {
"type": "string"
}
}
}
},
"env": {
"type": "array",
"description": "array with environment variables to add to all deployments",
"items": {
"type": "object"
}
}
}
}
}
},
"migrations": {
"type": "object",
"title": "Migrations",
"description": "database migration configuration",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"title": "Enabled",
"description": "enable automatic database migrations during chart upgrades"
},
"podLabels": {
"type": "object",
"title": "Pod Labels",
"description": "additional labels for the migration job pods"
},
"command": {
"type": "string",
"title": "Command",
"description": "custom command to run for database migrations"
},
"entrypoint": {
"type": "array",
"title": "Entrypoint",
"description": "custom container entrypoint for the migration job",
"items": {
"type": "string"
}
},
"resources": {
"type": "object",
"title": "Resources",
"description": "job resources configuration",
"properties": {
"requests": {
"type": "object",
"properties": {
"cpu": {
"type": "string",
"description": "CPU request for the migration job"
},
"memory": {
"type": "string",
"description": "Memory request for the migration job"
},
"ephemeral-storage": {
"type": "string",
"description": "Ephemeral storage request for the migration job"
}
}
},
"limits": {
"type": "object",
"properties": {
"cpu": {
"type": "string",
"description": "CPU limit for the migration job"
},
"memory": {
"type": "string",
"description": "Memory limit for the migration job"
},
"ephemeral-storage": {
"type": "string",
"description": "Ephemeral storage limit for the migration job"
}
}
}
}
},
"securityContext": {
"type": "object",
"title": "Security Context",
"description": "job security context configuration",
"properties": {
"runAsUser": {
"type": "integer",
"description": "user ID to run the container as"
},
"runAsNonRoot": {
"type": "boolean",
"description": "whether the container must run as a non-root user"
},
"readOnlyRootFilesystem": {
"type": "boolean",
"description": "whether the container has a read-only root filesystem"
},
"allowPrivilegeEscalation": {
"type": "boolean",
"description": "whether to allow privilege escalation"
},
"capabilities": {
"type": "object",
"description": "capabilities to add or drop"
}
}
},
"timeoutSeconds": {
"type": "integer",
"title": "Timeout Seconds",
"description": "job timeout in seconds"
},
"backoffLimit": {
"type": "integer",
"title": "Backoff Limit",
"description": "job backoff limit (number of retries)"
},
"restartPolicy": {
"type": "string",
"title": "Restart Policy",
"description": "job restart policy",
"enum": ["Never", "OnFailure"]
},
"env": {
"type": "array",
"title": "Environment Variables",
"description": "additional environment variables for the migration job",
"items": {
"type": "object"
}
},
"extraVolumeMounts": {
"type": "array",
"title": "Extra Volume Mounts",
"description": "additional volume mounts for the migration job",
"items": {
"type": "object"
}
},
"extraVolumes": {
"type": "array",
"title": "Extra Volumes",
"description": "additional volumes for the migration job",
"items": {
"type": "object"
}
},
"affinity": {
"type": "object",
"title": "Affinity",
"description": "affinity for migration job pods assignment"
},
"nodeSelector": {
"type": "object",
"title": "Node Selector",
"description": "node labels for migration job pods assignment"
},
"tolerations": {
"type": "array",
"title": "Tolerations",
"description": "tolerations for migration job pods assignment",
"items": {
"type": "object"
}
}
}
},
"server": {
"type": "object",
"title": "Server",
"description": "server configuration",
"additionalProperties": false,
"properties": {
"basicAuth": {
"type": "object",
"title": "Basic Auth",
"description": "basic auth configuration",
"properties": {
"enabled": {
"type": "boolean",
"title": "Enabled",
"description": "enable basic auth for the server, for an administrator/password combination"
},
"authString": {
"type": "string",
"title": "Auth String",
"description": "basic auth credentials in the format admin:<your-password> (no brackets)"
},
"existingSecret": {
"type": "string",
"title": "Existing Secret",
"description": "name of existing secret containing basic auth credentials. takes precedence over authString. must contain a key `auth-string` with the value of the auth string"
}
}
},
"image": {
"type": "object",
"title": "Image",
"description": "server image configuration",
"properties": {
"repository": {
"type": "string",
"title": "Repository",
"description": "server image repository"
},
"prefectTag": {
"type": "string",
"title": "Tag",
"description": "server image tag"
},
"pullPolicy": {
"type": "string",
"title": "Pull Policy",
"description": "server image pull policy"
},
"pullSecrets": {
"type": "array",
"title": "Pull Secrets",
"description": "server image pull secrets",
"items": {
"type": "string"
}
}
}
},
"priorityClassName": {
"type": "string",
"title": "Priority Class Name",
"description": "priority class name to use for the server pods; if the priority class is empty or doesn't exist, the server pods are scheduled without a priority class"
},
"apiBasePath": {
"type": "string",
"title": "API Base Path",
"description": "sets PREFECT_SERVER_API_BASE_PATH",
"default": "/api"
},
"debug": {
"type": "boolean",
"title": "Debug",
"description": "server debug mode"
},
"loggingLevel": {
"type": "string",
"title": "Logging Level",
"description": "sets PREFECT_LOGGING_SERVER_LEVEL",
"enum": ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]
},
"uiConfig": {
"type": "object",
"title": "UI Config",
"description": "Prefect UI Config",
"properties": {
"enabled": {
"type": "boolean",
"title": "Enable Prefect UI",
"description": "set PREFECT_UI_ENABLED; enable the UI on the server"
},
"prefectUiApiUrl": {
"type": "string",
"title": "Prefect API URL",
"description": "sets PREFECT_UI_API_URL"
}
}
},
"env": {
"type": "array",
"title": "Environment Variables",
"description": "array with environment variables to add to server nodes",
"items": {
"type": "object"
}
},
"args": {
"type": "array",
"title": "Custom container command arguments",
"description": "array with arguments",
"items": {
"type": "string"
}
},
"command": {
"type": "array",
"title": "Custom container entrypoint",
"description": "array with container entrypoint",
"items": {
"type": "string"
}
},
"updateStrategy": {
"type": "object",
"title": "Update strategy",
"description": "The type of update strategy to use to replace existing pods with new ones",
"properties": {
"type": {
"type": "string",
"title": "Deployment type",
"description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\"."
},
"rollingUpdate" : {
"type": "object",
"title": "Rolling update settings",
"description": "Rolling update config params. Should only be specified if updateStrategy is set to \"RollingUpdate\".",
"properties": {
"maxSurge": {
"type": "string",
"title": "Max pod surge",
"description": ""
},
"maxUnavailable": {
"type": "string",
"title": "Max unavailable pods",
"description": ""
}
}
}
}
},
"revisionHistoryLimit": {
"type": "integer",
"title": "Revision History Limit",
"description": "the number of old ReplicaSets to retain to allow rollback"
},
"autoscaling": {
"type": "object",
"title": "Autoscaling",
"description": "server autoscaling configuration",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"title": "Enabled",
"description": "enable server autoscaling"
},
"minReplicas": {
"type": "integer",
"title": "Min Replicas",
"description": "minimum number of server replicas"
},
"maxReplicas": {
"type": "integer",
"title": "Max Replicas",
"description": "maximum number of server replicas"
},
"targetCPU": {
"type": "integer",
"title": "Target CPU Utilization Percentage",
"description": "target CPU utilization percentage"
},
"targetMemory": {
"type": "integer",
"title": "Target Memory Utilization Percentage",
"description": "target Memory utilization percentage"
}
}
},
"replicaCount": {
"type": "integer",
"title": "Replica Count",
"description": "number of server replicas to deploy"
},
"resources": {
"type": "object",
"title": "Resources",
"description": "server resource requests and limits",
"additionalProperties": false,
"properties": {
"requests": {
"type": "object",
"title": "Requests",
"description": "server resource requests",
"additionalProperties": false,
"properties": {
"cpu": {
"type": "string",
"title": "CPU",
"description": "server CPU request"
},
"memory": {
"type": "string",
"title": "Memory",
"description": "server memory request"
},
"ephemeral-storage": {
"type": "string",
"title": "Ephemeral Storage",
"description": "server ephemeral storage request"
}
}
},
"limits": {
"type": "object",
"title": "Limits",
"description": "server resource limits",
"additionalProperties": false,
"properties": {
"cpu": {
"type": "string",
"title": "CPU",
"description": "server CPU limit"
},
"memory": {
"type": "string",
"title": "Memory",
"description": "server memory limit"
},
"ephemeral-storage": {
"type": "string",
"title": "Ephemeral Storage",
"description": "server ephemeral storage limit"
}
}
}
}
},
"livenessProbe": {
"type": "object",
"title": "Liveness Probe",
"description": "server liveness probe configuration",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"title": "Enabled",
"description": "enable server liveness probe"
},
"config": {
"type": "object",
"title": "Liveness Probe",
"description": "server liveness probe configuration",
"additionalProperties": false,
"properties": {
"initialDelaySeconds": {
"type": "integer",
"title": "Initial Delay Seconds",
"description": "The number of seconds to wait before starting the first probe."
},
"periodSeconds": {
"type": "integer",
"title": "Period Seconds",
"description": "The number of seconds to wait between consecutive probes."
},
"timeoutSeconds": {
"type": "integer",
"title": "Timeout Seconds",
"description": "The number of seconds to wait for a probe response before considering it as failed."
},
"successThreshold": {
"type": "integer",
"title": "Success Threshold",
"description": "The number of consecutive failures allowed before considering the probe as failed."
},
"failureThreshold": {
"type": "integer",
"title": "Failure Threshold",
"description": "The minimum consecutive successes required to consider the probe successful."
}
}
}
}
},
"readinessProbe": {
"type": "object",
"title": "Readiness Probe",
"description": "server readiness probe configuration",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"title": "Enabled",
"description": "enable server readiness probe"
},
"config": {
"type": "object",
"title": "Readiness Probe",
"description": "server readiness probe configuration",
"additionalProperties": false,
"properties": {
"initialDelaySeconds": {
"type": "integer",
"title": "Initial Delay Seconds",
"description": "The number of seconds to wait before starting the first probe."
},
"periodSeconds": {
"type": "integer",
"title": "Period Seconds",
"description": "The number of seconds to wait between consecutive probes."
},
"timeoutSeconds": {
"type": "integer",
"title": "Timeout Seconds",
"description": "The number of seconds to wait for a probe response before considering it as failed."
},
"successThreshold": {
"type": "integer",
"title": "Success Threshold",
"description": "The number of consecutive failures allowed before considering the probe as failed."
},
"failureThreshold": {
"type": "integer",
"title": "Failure Threshold",
"description": "The minimum consecutive successes required to consider the probe successful."
}
}
}
}
},
"podSecurityContext": {
"type": "object",
"title": "Pod Security Context",
"description": "server pod security context",
"additionalProperties": false,
"properties": {
"runAsUser": {
"type": ["integer", "null"],
"title": "Run As User",
"description": "set server pod's security context runAsUser"
},
"runAsNonRoot": {
"type": "boolean",
"title": "Run As Non Root",
"description": "set server pods security context runAsNonRoot"
},
"fsGroup": {
"type": ["integer", "null"],
"title": "FS Group",
"description": "set server pod's security context fsGroup"
},
"seccompProfile": {
"type": "object",
"title": "Seccomp Profile",
"description": "Seccomp profile settings for the pod",
"properties": {
"type": {
"type": "string",
"enum": ["RuntimeDefault", "Unconfined", "Localhost"]
},
"localhostProfile": {
"type": "string",
"description": "Path to the seccomp profile on the node. Required when type is 'Localhost'",
"pattern": "^/.*$"
}
},
"required": ["type"],
"dependencies": {
"type": {
"oneOf": [
{
"properties": {
"type": {
"enum": ["RuntimeDefault", "Unconfined"]
}
},
"required": ["type"]
},
{
"properties": {
"type": {
"enum": ["Localhost"]
},
"localhostProfile": {
"type": "string"
}
},
"required": ["type", "localhostProfile"]
}
]
}
}
}
}
},
"containerSecurityContext": {
"type": "object",
"title": "Container Security Context",
"description": "server container security context",
"additionalProperties": false,
"properties": {
"runAsUser": {
"type": ["integer", "null"],
"title": "Run As User",
"description": "set server container's security context runAsUser"
},
"runAsNonRoot": {
"type": "boolean",
"title": "Run As Non Root",
"description": "set server container's security context runAsNonRoot"
},
"readOnlyRootFilesystem": {
"type": "boolean",
"title": "Read Only Root Filesystem",
"description": "set server container's security context readOnlyRootFilesystem"
},
"allowPrivilegeEscalation": {
"type": "boolean",
"title": "Allow Privilege Escalation",
"description": "set server container's security context allowPrivilegeEscalation"
},
"capabilities": {
"type": "object",
"title": "Configure Linux capabilities",
"description": "set server container's security context capabilities",
"properties": {
"add": {
"type": "array",
"title": "Added capabilities",
"description": "set server container's security context capabilities to add",
"items": {
"type": "string"
}
},
"drop": {
"type": "array",
"title": "Removed capabilities",
"description": "set server container's security context capabilities to remove",
"items": {
"type": "string"
}
}
}
}
}
},
"podLabels": {
"type": "object",
"title": "Pod Labels",
"description": "extra labels for server pod"
},
"podAnnotations": {
"type": "object",
"title": "Pod Annotations",
"description": "extra annotations for server pod"
},
"affinity": {
"type": "object",
"title": "Affinity",
"description": "affinity for server pods assignment"
},
"nodeSelector": {
"type": "object",
"title": "Node Selector",
"description": "node labels for server pods assignment"
},
"tolerations": {
"type": "array",
"title": "Tolerations",
"description": "tolerations for server pods assignment",
"items": {
"type": "object"
}
},
"extraEnvVarsCM": {
"type": "string",
"title": "Extra Env Vars ConfigMap",
"description": "name of existing ConfigMap containing extra env vars to add to server nodes"
},
"extraEnvVarsSecret": {
"type": "string",
"title": "Extra Env Vars Secret",
"description": "name of existing Secret containing extra env vars to add to server nodes"
},
"extraContainers": {
"type": "array",
"title": "Extra Containers",
"description": "additional sidecar containers",
"items": {
"type": "object"
}
},
"extraVolumes": {
"type": "array",
"title": "Extra Volumes",
"description": "array with extra volumes for the server pod",
"items": {
"type": "object"
}
},
"extraVolumeMounts": {
"type": "array",
"title": "Extra Volume Mounts",
"description": "array with extra volumeMounts for the server pod",
"items": {
"type": "object"
}
},
"extraArgs": {
"type": "array",
"title": "Extra Container Args",
"description": "array with extra args for the server container"
}
}
},
"backgroundServices": {
"type": "object",
"title": "Background Services",
"description": "Background Services Deployment Configuration",
"additionalProperties": false,
"properties": {
"runAsSeparateDeployment": {
"type": "boolean",
"description": "Run background services (like scheduling) in a separate deployment"
},
"replicaCount": {
"type": "integer",
"description": "number of background-services replicas to deploy",
"minimum": 1
},
"priorityClassName": {
"type": "string",
"description": "priority class name to use for the background-services pods"
},
"debug": {
"type": "boolean",
"description": "enable background-services debug mode"
},
"loggingLevel": {
"type": "string",
"description": "sets PREFECT_LOGGING_SERVER_LEVEL",
"enum": ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]
},
"env": {
"type": "array",
"description": "array with environment variables to add to background-services container",
"items": {
"type": "object"
}
},
"args": {
"type": "array",
"title": "Custom container command arguments",
"description": "array with arguments",
"items": {
"type": "string"
}
},
"command": {
"type": "array",
"title": "Custom container entrypoint",
"description": "array with container entrypoint",
"items": {
"type": "string"
}
},
"revisionHistoryLimit": {
"type": "integer",
"description": "the number of old ReplicaSets to retain to allow rollback"
},
"resources": {
"type": "object",
"properties": {
"requests": {
"type": "object",
"description": "the requested resources for the background-services container",
"properties": {
"cpu": {
"type": "string"
},
"memory": {
"type": "string"
},
"ephemeral-storage": {
"type": "string"
}
}
},
"limits": {
"type": "object",
"description": "the requested limits for the background-services container",
"properties": {
"cpu": {
"type": "string"
},
"memory": {
"type": "string"
},
"ephemeral-storage": {
"type": "string"
}
}
}
}
},
"livenessProbe": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"config": {
"type": "object",
"properties": {
"initialDelaySeconds": { "type": "integer" },
"periodSeconds": { "type": "integer" },
"timeoutSeconds": { "type": "integer" },
"failureThreshold": { "type": "integer" },
"successThreshold": { "type": "integer" }
}
}
}
},
"readinessProbe": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"config": {
"type": "object",
"properties": {
"initialDelaySeconds": { "type": "integer" },
"periodSeconds": { "type": "integer" },
"timeoutSeconds": { "type": "integer" },
"failureThreshold": { "type": "integer" },
"successThreshold": { "type": "integer" }
}
}
}
},
"podSecurityContext": {
"type": "object",
"properties": {
"runAsUser": { "type": ["integer", "null"] },
"runAsNonRoot": { "type": "boolean" },
"fsGroup": { "type": ["integer", "null"] }
}
},
"containerSecurityContext": {
"type": "object",
"properties": {
"runAsUser": { "type": ["integer", "null"] },
"runAsNonRoot": { "type": "boolean" },
"readOnlyRootFilesystem": { "type": "boolean" },
"allowPrivilegeEscalation": { "type": "boolean" },
"capabilities": { "type": "object" }
}
},
"podLabels": { "type": "object" },
"podAnnotations": { "type": "object" },
"affinity": { "type": "object" },
"nodeSelector": { "type": "object" },
"tolerations": { "type": "array" },
"extraEnvVarsCM": { "type": "string" },
"extraEnvVarsSecret": { "type": "string" },
"extraContainers": { "type": "array" },
"extraVolumes": { "type": "array" },
"extraVolumeMounts": { "type": "array" },
"serviceAccount": {
"type": "object",
"title": "Service Account",
"description": "background services service account configuration",
"additionalProperties": false,
"properties": {
"create": {
"type": "boolean",
"title": "Create",
"description": "create background services service account"
},
"name": {
"type": "string",
"title": "Name",
"description": "the name of the ServiceAccount to use. if not set and create is true, a name is generated using the common.names.fullname template"
},
"annotations": {
"type": "object",
"title": "Annotations",
"description": "annotations to add to the background services service account"
}
}
},
"messaging": {
"type": "object",
"title": "Messaging",
"description": "messaging configuration for background services",
"additionalProperties": false,
"properties": {
"broker": {
"type": "string",
"title": "Broker class",
"description": "messaging broker class to use for background services"
},
"cache": {
"type": "string",
"title": "Cache class",
"description": "messaging cache class to use for background services"
},
"redis": {
"type": "object",
"title": "Redis broker settings",
"description": "redis broker settings for background services",
"additionalProperties": false,
"properties": {
"host": {
"type": "string",
"title": "Redis hostname",
"description": "redis broker hostname for background services"
},
"port": {
"type": ["integer", "string"],
"title": "Redis port",
"description": "redis broker port for background services"
},
"db": {
"type": ["integer", "string"],
"title": "Redis database",
"description": "redis broker database for background services"
},
"username": {
"type": "string",
"title": "Redis username",
"description": "redis broker username for background services",
"optional": true
},
"password": {
"type": "string",
"title": "Redis password",
"description": "redis broker password for background services",
"optional": true
},
"ssl": {
"type": "boolean",
"title": "SSL",
"description": "enable SSL for redis broker connection"
}
}
}
}
}
}
},
"ingress": {