-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
1004 lines (957 loc) · 32.3 KB
/
values.yaml
File metadata and controls
1004 lines (957 loc) · 32.3 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
## Global Docker image parameters.
## Please note that this will override the image parameters, including dependencies, configured to use the global value.
global:
## Global Docker image registry
imageRegistry: ""
## Global Docker registry secret names as an array
##
## @example
## imagePullSecrets:
## - myRegistryKeySecretName
imagePullSecrets: []
## Force target Kubernetes version (using Helm capabilities if not set)
kubeVersion: ""
## String to partially override horizon.fullname
nameOverride: ""
## String to fully override horizon.fullname
fullnameOverride: ""
## String to override the image registry for all containers
imageRegistry: ""
## Labels to add to all deployed objects
commonLabels: {}
## Annotations to add to all deployed objects
commonAnnotations: {}
## By default, we fetch the Horizon image from the Evertrust registry.
## If the tag is null or unset, the default value will be set to the chart appVersion.
## As the official Evertrust registry is not in open-access,
## you should specify an image pull secret that has
## access to Horizon images.
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
image:
## Horizon image registry
registry: registry.evertrust.io
## Horizon image repository
repository: horizon
## Horizon image tag (immutable tags are recommended)
tag: 2.9.0
## Horizon image flavor (for HSM compatible images)
flavor: ""
## Horizon image pull policy
pullPolicy: IfNotPresent
## Horizon image pull secrets
pullSecrets: []
## @ref https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
## @example
## updateStrategy:
## type: RollingUpdate
## rollingUpdate:
## maxSurge: 25%
## maxUnavailable: 25%
updateStrategy:
## Horizon deployment strategy type
type: RollingUpdate
## Rolling update spec
rollingUpdate:
maxUnavailable: 1
## Annotations to add to the deployment object
deploymentAnnotations: {}
## Annotations to add to the deployment object
deploymentLabels: {}
## Horizon pod priority class name
priorityClassName: ""
## Horizon pod host aliases
##
## @ref https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
hostAliases: []
## Optionally specify extra list of additional volumes for Horizon pods
##
## @example
## extraVolumes:
## - name: extra-volume-name
## configMap:
## name: example-configmap
extraVolumes: []
## Optionally specify extra list of additional volumeMounts for Horizon container(s)
##
## @example
## extraVolumeMounts:
## - name: extra-volume-name
## mountPath: /mnt/extra-volume
extraVolumeMounts: []
## Add additional sidecar containers to the Horizon pod
##
## @example
## sidecars:
## - name: your-image-name
## image: your-image
## imagePullPolicy: Always
## ports:
## - name: portname
## containerPort: 1234
sidecars: []
## Add lifecycle hooks to the Horizon deployment
lifecycleHooks: {}
## Extra labels for Horizon pods
##
## @ref https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels: {}
## Annotations for Horizon pods
##
## @ref https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
podAnnotations: {}
## Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
##
## @ref https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
podAffinityPreset: ""
## Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
##
## @ref https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
podAntiAffinityPreset: soft
## Node affinity preset
##
## @ref https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
nodeAffinityPreset:
## Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard`
type: ""
## Node label key to match. Ignored if `affinity` is set
key: ""
## Node label values to match. Ignored if `affinity` is set
##
## @example
## values:
## - e2e-az1
## - e2e-az2
values: []
## Number of controller revisions to keep
revisionHistoryLimit: 3
## Replica count when no autoscaler is configured
replicas: 1
## Affinity for pod assignment
##
## NOTE: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set.
##
## @ref https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
affinity: {}
## Node labels for pod assignment
##
## @ref https://kubernetes.io/docs/user-guide/node-selection/
nodeSelector: {}
## Tolerations for pod assignment
##
## @ref https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
tolerations: []
## Spread Constraints for pod assignment
##
## @ref https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
## @example
## topologySpreadConstraints:
## - maxSkew: 1
## topologyKey: node
## whenUnsatisfiable: DoNotSchedule
topologySpreadConstraints: []
## Horizon containers' resource requests and limits.
## The JVM will automatically adapt the memory allocation pool to the container allocated resources.
##
## @ref https://kubernetes.io/docs/user-guide/compute-resources/
resources:
## The resources limits for the Horizon container
limits: {}
## The requested resources for the Horizon container
requests:
memory: 512Mi
cpu: 300m
## Configure Pods Security Context
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
podSecurityContext:
## Enabled Horizon pods' Security Context
enabled: true
## Set Horizon pod's Security Context fsGroup
fsGroup: 1001
## Configure Container Security Context (only main container)
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
containerSecurityContext:
## Enabled Horizon containers' Security Context
enabled: true
## Set Horizon container's Security Context runAsUser
runAsUser: 1001
## Set Horizon container's Security Context runAsNonRoot
runAsNonRoot: true
## Configure extra options for Horizon containers' liveness probe.
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
livenessProbe:
## Enable livenessProbe
enabled: true
## Initial delay seconds for livenessProbe
initialDelaySeconds: 0
## Period seconds for livenessProbe
periodSeconds: 10
## Timeout seconds for livenessProbe
timeoutSeconds: 5
## Success threshold for livenessProbe
successThreshold: 1
## Failure threshold for livenessProbe
failureThreshold: 3
## A startup probe allows us to define a shorter period to improve Horizon time-to-liveliness time
## while preserving the Horizon pod from a restart loop when it is slow to start.
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#define-startup-probes
startupProbe:
## Enable startupProbe. Since Horizon is slow to start, this is highly recommended.
enabled: true
## Failure threshold for startupProbe
failureThreshold: 60
## Period seconds for startupProbe
periodSeconds: 3
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
readinessProbe:
## Enable readinessProbe
enabled: true
## Initial delay seconds for readinessProbe
initialDelaySeconds: 0
## Period seconds for readinessProbe
periodSeconds: 5
## Timeout seconds for readinessProbe
timeoutSeconds: 3
## Success threshold for readinessProbe
successThreshold: 1
## Failure threshold for readinessProbe
failureThreshold: 3
## @ref https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
horizontalAutoscaler:
## Enable Horizontal POD autoscaling for Horizon
enabled: false
## Minimum number of Horizon replicas
minReplicas: 1
## Maximum number of Horizon replicas
maxReplicas: 3
## Target CPU utilization percentage
targetCPU: 50
## Target Memory utilization percentage
targetMemory: 50
## @ref https://kubernetes.io/docs/tasks/run-application/configure-pdb/
disruptionBudget:
## Created a PodDisruptionBudget
enabled: false
## Min number of pods that must still be available after the eviction
minAvailable: 1
## Max number of pods that can be unavailable after the eviction
maxUnavailable: 0
## Configure environment variable injections into Horizon's pods.
## This is the way you should inject secrets into the app if you wish to use the Kubernetes secrets implementation.
##
## @ref https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/
## @example
## environment:
## - name: KEY
## value: VALUE
environment: []
## This value is useful if you need to resolve your custom domain for ACME challenges.
##
## @ref https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config
## @example
## nameservers:
## - 1.2.3.4
## searches:
## - ns1.svc.cluster-domain.example
## - my.dns.search.suffix
## options:
## - name: ndots
## value: "2"
dnsConfig: {}
## @ref https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy
dnsPolicy: ""
## Service configuration
service:
## Kubernetes service type
type: ClusterIP
## Horizon service clusterIP IP
##
## @example
## clusterIP: None
clusterIP: ""
## Load balancer IP for the Horizon Service (optional, cloud specific)
##
## @ref https://kubernetes.io/docs/user-guide/services/#type-loadbalancer
loadBalancerIP: ""
## Address that are allowed when service is LoadBalancer
##
## @ref https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service
## @example
## loadBalancerSourceRanges:
## - 10.10.10.0/24
loadBalancerSourceRanges: []
## Enable client source IP preservation
##
## @ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip
externalTrafficPolicy: Cluster
## Extra port to expose on Horizon service
extraPorts: []
## Annotations for Horizon service
annotations: {}
## Ingress configuration
##
## @ref https://kubernetes.io/docs/concepts/services-networking/ingress/
ingress:
## Set to true to enable ingress record generation
enabled: false
## Ingress type
##
## Automatically configure your ingress for an ingress controller. Accepted values are nginx, traefik.
## This will override the clientCertificateHeader if set, and generate annotations, resources, and
## ingresses resources to ensure Horizon works correctly.
type: ""
## Client certificate authentication
##
## When ingress.type is set, determines whether the ingress controller should request client certificates.
clientCertificateAuth: false
## Client certificate CA secrets
##
## If set, the ingress controller will only request client certificates signed by these CAs.
## Each secret should contain a `ca.crt` key containing the PEM-encoded AC certificate.
clientCertificateCASecrets: []
## SCEP compatibility mode
##
## Adds a secondary ingress for SCEP support over HTTP.
scepCompatibilityMode: false
## IngressClass that will be used to implement the Ingress (Kubernetes 1.18+)
ingressClassName: ""
## Default host for the ingress resource
##
## @example
## hostname: "horizon.local"
hostname: ""
## Default path for the ingress record
##
## NOTE: You may need to set this to '/*' in order to use this with ALB ingress controllers.
path: /
## Ingress path type
pathType: Prefix
## Additional annotations for the Ingress resource
##
## To enable certificate autogeneration, place here your cert-manager annotations.
##
## @example
## annotations:
## cert-manager.io/cluster-issuer: cluster-issuer-name
annotations: {}
## Enable TLS configuration for the hostname defined at ingress.hostname parameter
##
## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }}
## You can use the ingress.secrets parameter to create this TLS secret, relay on cert-manager to create it, or
## let the chart create self-signed certificates for you.
tls: false
## The list of additional hostnames to be covered with this ingress record
##
## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array.
##
## @example
## extraHosts:
## - name: horizon.local
## path: /
extraHosts: []
## An array with additional arbitrary paths that may need to be added to the ingress under the main host
##
## @example
## extraPaths:
## - path: /*
## backend:
## serviceName: ssl-redirect
## servicePort: use-annotation
extraPaths: []
## The tls configuration for additional hostnames to be covered with this ingress record
##
## @ref https://kubernetes.io/docs/concepts/services-networking/ingress/#tls
## @example
## extraTls:
## - hosts:
## - horizon.local
## secretName: horizon.local-tls
extraTls: []
## Additional rules to be covered with this ingress record
##
## @ref https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules
## @example
## extraRules:
## - host: horizon.local
## http:
## path: /
## backend:
## service:
## name: horizon
## port:
## name: http
extraRules: []
## Prometheus monitor configuration
monitoring:
## Enable the creation of a ServiceMonitor object for Horizon if the cluster has the monitoring.coreos.com/v1 capability
enabled: true
## Configure the Play secret for the Horizon instance.
## As this is used for cryptographic purposes, it should be fetched from the environment.
##
## @ref https://www.playframework.com/documentation/2.8.x/ApplicationSecret Play Framework Application Secret
## @example
## appSecret:
## valueFrom:
## secretKeyRef:
## name: horizon-secret
## key: appSecret
appSecret: {}
## A valid Horizon license is required for the software to run.
## You should store it (base64-encoded) in a Kubernetes secret and specify the secret details here.
##
## @ref README.md
license:
## Existing secret name where the Horizon license is stored
secretName: ""
## Existing secret key where the Horizon license is stored
secretKey: ""
## Set up initial admin user.
initialAdminHashPassword:
## Whether to enable the initial admin user
enabled: false
## Existing secret name where the initial admin password is stored
secretName: ""
## Existing secret key where the initial admin password is stored
secretKey: ""
## Horizon Default vault configuration
defaultVault:
type: tink
masterKeyURI: ""
## Keyset
##
## A reference to a secret that contains the keyset.
## You should store it (base64-encoded) in a Kubernetes secret and specify the secret details here.
##
## @ref README.md
## @example
## keyset:
## secretName: ""
## secretKey: ""
keyset: {}
## Horizon legacy SSV password (Optional).
## Should be set if upgrading from Horizon 2.7 or earlier to Horizon 2.8 or later.
##
## @example
## legacySsvPassword:
## secretName: horizon-legacy-ssv-password
## secretKey: legacySsvPassword
legacySsvPassword: {}
## Additional allowed hosts that are whitelisted to access the Horizon UI.
## Configured ingresses will automatically be added to the list, this should
## only be used when port forwarding or when an ingress is created manually.
##
## @example
## allowedHosts:
## - localhost:9000
## - demo.example.org
allowedHosts:
- localhost:9000
## Depending on your Kubernetes environment, Ingress IPs may be unpredictable.
## In that case, you should whitelist every IP in your local addressing space.
##
## @example
## trustedProxies:
## - 0.0.0.0/0
## - ::/0
trustedProxies:
- 0.0.0.0/0
- ::/0
## Configuration for Horizon events
events:
## Whether Horizon events should be signed and chained using the event seal secret
chainsign: true
## Secret used to sign and chain events
##
## Can be a reference to a Kubernetes secret.
##
## @example
## secret:
## valueFrom:
## secretKeyRef:
## name: horizon-secret
## key: eventSealSecret
secret: {}
## Duration during which events are kept in database
ttl: ""
## Duration during which discovery events are kept in database
discoveryTtl: ""
## Format in which logs will be outputted. Can be set either to "console" or "json" for structured logging.
logFormat: console
## TLS configuration
tls:
## Whether to use the HTTPS port by default on ingresses and other services
enabled: false
## Existing secret name where a PKCS12 certificate is stored
secretName: ""
## Existing secret key where the PKCS12 certificate is stored
secretKey: ""
## Configuration for the Horizon mailer.
## You should configure this if you want your Horizon instance to be able to send emails.
## You should fetch credentials from the environment if they are required.
mailer:
## SMTP host
host: ""
## SMTP host port
port: ""
## Enable TLS for this SMTP host
tls: ""
## Enable SSL for this SMTP host
ssl: ""
## Authentication username for this SMTP host
user: ""
## Authentication password for this SMTP host
##
## Can be a reference to a Kubernetes secret.
##
## @example
## password:
## valueFrom:
## secretKeyRef:
## name: horizon-secret
## key: mailerPassword
password: {}
## Configure the logger for this Horizon instance.
## Sensible defaults are set, but you may need a more verbose logging experience when debugging the application.
##
## @ref https://www.playframework.com/documentation/2.8.x/ScalaLogging Play Framework Logging
logback:
## Global logging level for all loggers
level: info
## Log messages pattern
pattern: "%date{yyyy-MM-dd HH:mm:ss} - [%logger] - [%traceID] - [%level] - %message%n%xException{full}"
## Logging level overrides for specific loggers
##
## @example You might want to use the following loggers to gather more info about your Horizon instance
## loggers:
## - name: actors
## level: debug
## - name: actions
## level: debug
## - name: controllers
## level: debug
## - name: filters
## level: debug
## - name: models
## level: debug
## - name: modules
## level: debug
## - name: pki-connectors
## level: debug
## - name: racs-connectors
## level: debug
loggers:
- name: events
level: warn
- name: json_events
level: info
rbac:
## Whether to create RBAC resources
create: true
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
serviceAccount:
## Enable the creation of a ServiceAccount for Horizon pods
create: true
## Name of the created ServiceAccount
##
## If not set and create is true, a name is generated using the horizon.fullname template.
name: ""
## Annotations for Horizon Service Account
annotations:
helm.sh/hook: pre-install, pre-upgrade, pre-rollback
helm.sh/hook-delete-policy: before-hook-creation
helm.sh/hook-weight: "0"
## Automount service account token for the server service account
automountServiceAccountToken: true
leases:
## Whether leases should be used when launching multiple replicas of Horizon pods
enabled: true
## Indicates to Horizon in which header the client certificate will be passed.
## Will be automatically set by the ingress.clientCertificateAuth value if set.
clientCertificateHeader: ""
## Whether Horizon pods should connect to each other directly via IP, or through a DNS record generated by a Kubernetes DNS server.
## Useful if the kube-dns server is configured with "pods disabled" or if you use GKE Cloud DNS.
## NOTE: This is not supported by Istio.
podsDirectConnect: false
## Additional configuration for Horizon.
## Injecting arbitrary config could result in unexpected behavior. Proceed with caution.
##
## @ref https://docs.evertrust.fr/horizon/-/install-guide/advanced_config Horizon Configuration Parameters
## @example
## extraConfig: |
## horizon {
## notification.mail.attachment.extension.der = "der"
## }
extraConfig: ""
temporaryDatabase:
## Whether to enable the deployment of a temporary MongoDB instance
enabled: true
## MongoDB image
image:
## MongoDB image registry
registry: ~
## MongoDB image repository
repository: mongo
## MongoDB image tag (immutable tags are recommended)
tag: 7
## MongoDB image pull policy
pullPolicy: IfNotPresent
## MongoDB image pull secrets
pullSecrets: []
persistence:
## Whether to enable persistence on the temporary MongoDB
enabled: true
## Extra annotations to add to the PVC
annotations: {}
## Storage class of backing PVC
storageClass: ""
## Access modes of the PVC
accessModes:
- ReadWriteOnce
## Size of data volume for MongoDB
size: "1Gi"
## Optionally specify extra list of additional volumes for MongoDB pods
##
## @example
## extraVolumes:
## - name: extra-volume-name
## configMap:
## name: example-configmap
extraVolumes: []
## Optionally specify extra list of additional volumeMounts for MongoDB container(s)
##
## @example
## extraVolumeMounts:
## - name: extra-volume-name
## mountPath: /mnt/extra-volume
extraVolumeMounts: []
## MongoDB container resources
##
## @ref https://kubernetes.io/docs/user-guide/compute-resources/
resources:
## The resources limits for the MongoDB container
limits:
memory: 512Mi
cpu: 500m
## The requested resources for the MongoDB container
requests:
memory: 512Mi
cpu: 500m
## Configure Pods Security Context
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
podSecurityContext:
## Enabled Horizon pods' Security Context
enabled: true
## Set Horizon pod's Security Context fsGroup
fsGroup: 1001
## Configure Container Security Context
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
containerSecurityContext:
## Enabled Horizon containers' Security Context
enabled: true
## Set Horizon container's Security Context runAsUser
runAsUser: 1001
## Set Horizon container's Security Context runAsNonRoot
runAsNonRoot: true
## Upgrade job
upgrade:
## If true, an upgrade job will be run when upgrading the release, modifying your database schema. This works even if `mongodb.enabled` is set to false.
enabled: true
## If true, an upgrade job will be run every time the Chart is installed or upgraded.
force: false
## Extra annotations to add to the upgrade job
annotations:
helm.sh/hook: post-upgrade
helm.sh/hook-delete-policy: before-hook-creation
helm.sh/hook-weight: "0"
## Upgrade image
image:
## Horizon Migration image registry
registry: registry.evertrust.io
## Horizon Migration image repository
repository: horizon-migration
## Horizon Migration image tag (immutable tags are recommended)
tag: 1.13.0
## Horizon Migration image pull policy
pullPolicy: IfNotPresent
## Horizon Migration image pull secrets
pullSecrets: []
## horizon-migration container resources
##
## @ref https://kubernetes.io/docs/user-guide/compute-resources/
resources:
limits:
memory: 512Mi
cpu: 500m
requests:
memory: 512Mi
cpu: 500m
## Sets the version you're upgrading from. If empty, the chart will try to infer the version from the database.
from: ""
## Sets the version you're upgrading to. If empty, the chart will use Chart.AppVersion.
to: ""
## Node labels for upgrade pod assignment
##
## @ref https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
nodeSelector: {}
## Tolerations for upgrade pod assignment
##
## @ref https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
tolerations: []
## Configure Pods Security Context
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
podSecurityContext:
## Enabled upgrade pod Security Context
enabled: true
## Set upgrade pod Security Context fsGroup
fsGroup: 1001
## Configure Container Security Context
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
containerSecurityContext:
## Enabled upgrade container Security Context
enabled: true
## Set upgrade container Security Context runAsUser
runAsUser: 1001
## Set upgrade container Security Context runAsNonRoot
runAsNonRoot: true
## Optionally specify extra list of additional volumes for the upgrade pod
##
## @example
## extraVolumes:
## - name: extra-volume-name
## configMap:
## name: example-configmap
extraVolumes: []
## Optionally specify extra list of additional volumeMounts for the upgrade container
##
## @example
## extraVolumeMounts:
## - name: extra-volume-name
## mountPath: /mnt/extra-volume
extraVolumeMounts: []
## Ignore empty from
ignoreEmptyFrom: false
upgradeCompatibilityCheck:
## If true, a check job will be run before upgrading the release.
enabled: true
## Extra annotations to add to the upgrade compatibility check job
annotations:
helm.sh/hook: pre-upgrade
helm.sh/hook-delete-policy: before-hook-creation
helm.sh/hook-weight: "0"
## horizon-migration container resources
##
## @ref https://kubernetes.io/docs/user-guide/compute-resources/
resources:
limits:
memory: 512Mi
cpu: 500m
requests:
memory: 512Mi
cpu: 500m
## Node labels for upgrade pod assignment
##
## @ref https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
nodeSelector: {}
## Tolerations for upgrade pod assignment
##
## @ref https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
tolerations: []
## Configure Pods Security Context
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
podSecurityContext:
## Enabled upgrade compatibility check pod Security Context
enabled: true
## Set upgrade compatibility check pod Security Context fsGroup
fsGroup: 1001
## Configure Container Security Context
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
containerSecurityContext:
## Enabled upgrade compatibility check container Security Context
enabled: true
## Set upgrade compatibility check container Security Context runAsUser
runAsUser: 1001
## Set upgrade compatibility check container Security Context runAsNonRoot
runAsNonRoot: true
## Optionally specify extra list of additional volumes for the upgrade compatibility check pod
##
## @example
## extraVolumes:
## - name: extra-volume-name
## configMap:
## name: example-configmap
extraVolumes: []
## Optionally specify extra list of additional volumeMounts for the upgrade compatibility check container
##
## @example
## extraVolumeMounts:
## - name: extra-volume-name
## mountPath: /mnt/extra-volume
extraVolumeMounts: []
## Ignore empty from
ignoreEmptyFrom: false
backup:
## Whether to enable backup
enabled: false
## Extra annotations to add to the backup job
annotations: {}
## Extra labels to add to the backup job
labels: {}
## Whether to suspend backup scheduling
suspended: false
## Cron expression for the backup job
schedule: "0 * * * *"
## Successful jobs history limit
successfulJobsHistoryLimit: 1
## Failed jobs history limit
failedJobsHistoryLimit: 3
## Backoff limit for the backup job
backoffLimit: 3
## Toolbox image
image:
registry: quay.io/evertrust
## Toolbox image repository
repository: toolbox
## Toolbox image tag (immutable tags are recommended)
tag: v0.6.1
## Toolbox image pull policy
pullPolicy: IfNotPresent
## Toolbox image pull secrets
pullSecrets: []
## Configure Pods Security Context
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
podSecurityContext:
## Enabled Horizon pods' Security Context
enabled: true
## Set Horizon pod's Security Context fsGroup
fsGroup: 1001
## Configure Container Security Context (only main container)
##
## @ref https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
containerSecurityContext:
## Enabled Horizon containers' Security Context
enabled: true
## Set Horizon container's Security Context runAsUser
runAsUser: 1001
## Set Horizon container's Security Context runAsNonRoot
runAsNonRoot: true
## Optionally specify extra list of additional volumes for the backup pod
##
## @example
## extraVolumes:
## - name: extra-volume-name
## configMap:
## name: example-configmap
extraVolumes: []
## Optionally specify extra list of additional volumeMounts for the backup container
##
## @example
## extraVolumeMounts:
## - name: extra-volume-name
## mountPath: /mnt/extra-volume
extraVolumeMounts: []
## Backup container resources
##
## @ref https://kubernetes.io/docs/user-guide/compute-resources/
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 500m
memory: 512Mi
## Environment variable injections into the backup pods
##
## This is the way you should inject secrets into the app if you wish to use the Kubernetes secrets implementation.
##
## @ref https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/
environment: []
## Extra env vars passed to the backup pods
envFrom: []
## Node labels for backup pod assignment
##
## @ref https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
nodeSelector: {}
## Tolerations for backup pod assignment
##
## @ref https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
tolerations: []
## Affinity for the backup job (e.g., nodeAffinity, podAffinity, podAntiAffinity)
##
## @ref https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
affinity: {}
## Configuration for an Horizon external database
##
## Refer to the Horizon installation guide to configure the installation correctly.
externalDatabase:
## External MongoDB URI
##
## For an external database to be used, `mongodb.enabled` must be set to `false`.
## Can be a reference to a Kubernetes secret.
##
## @example
## uri:
## valueFrom:
## secretKeyRef:
## name: horizon-secret
## key: mongoDBUri
uri: {}
## Create dynamic manifests via values
##
## @example
## extraObjects:
## - apiVersion: "kubernetes-client.io/v1"
## kind: ExternalSecret
## metadata:
## name: horizon-secrets
## spec:
## backendType: gcpSecretsManager
## data:
## - key: horizon-secret-key
## name: horizon-secret-name
extraObjects: []
## Enable Prometheus metrics
metrics:
## Whether to enable Prometheus metrics
enabled: false
## Prometheus metrics port
port: 9095
## Enable analytics engine
##
## Refer to the Horizon installation guide to configure the installation correctly.
##
## @ref https://docs.evertrust.fr/horizon/-/install-guide/analytics Analytics guide
## @ref https://docs.evertrust.fr/horizon/-/install-guide/docker#_docker_analytics_environment Analytics for docker guide
analytics:
## Whether to enable analytics
enabled: false
## Enable Persistence
##
## When enabled, Horizon will be deployed as a statefulset.
persistence:
## Whether to enable persistence
enabled: false
## Persistent Volume Claim Retention Policy
##
## @ref https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention
persistentVolumeClaimRetentionPolicy:
whenDeleted: Delete
whenScaled: Retain
volumeClaimTemplates:
analytics:
annotations: {}
storageClass: "standard-rwo"