-
Notifications
You must be signed in to change notification settings - Fork 1
/
values.yaml
1265 lines (1225 loc) · 37.1 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
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
# Default values for smartface.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
global:
image:
# -- Overrides the Docker registry globally for all images
registry: "registry.gitlab.com"
# -- Overrides the chart's name
nameOverride: null
# -- Common annotations for all deployments/StatefulSets
annotations: {}
# -- Common annotations for all pods
podAnnotations: {}
# -- Common labels for all pods
podLabels: {}
# -- Common annotations for all services
serviceAnnotations: {}
# -- Common labels for all services
serviceLabels: {}
# -- Common revisionHistoryLimit for all deployments
revisionHistoryLimit:
# -- Common updateStrategy for all deployments
updateStrategy: {}
# -- docker secrets used to pull images with
imagePullSecrets:
- name: "sf-gitlab-registry-creds"
configurations:
database:
# -- connection string needs to be provided as a dependency of the chart
existingSecretName: "db-cs"
# -- key within the existing secret which contains the connection string, see https://learn.microsoft.com/en-us/dotnet/framework/data/adonet/connection-strings
connectionStringKey: "cs"
s3:
# -- supply to bring your own configmap. the configmap needs following keys: `name`, `region`, `folder`, `authType` and `useBucketRegion`
existingConfigMapName: ""
# -- name of S3 bucket
bucketName: ""
# -- system name of AWS region of S3 bucket e.g. `eu-central-1`
bucketRegion: ""
# -- prefix (folder) used for S3 objects
bucketFolder: ""
# -- type of authentication to be used. Currently `AssumedRole` and `InstanceProfile` are usable
authType: "AssumedRole"
# -- mechanism to resolve bucket endpoint - if `true` then connection is made based on bucket region. If `false` then bucket endpoint needs to be set manually
useBucketRegion: true
license:
secretName: "iface-lic"
volumeMountName: "license"
mountPath: "/etc/innovatrics"
apiAuth:
# -- supply to bring your own configmap. the configmap needs following keys: `authority`, `audience`, `oauth_token_url` and `oauth_authorize_url`
existingConfigMapName: ""
# -- issuer of JWT which the API will trust
authority: ""
# -- audience representing the API
audience: ""
# -- used only for enabling OAuth flows in swagger UI
oauthTokenUrl: ""
# -- used only for enabling OAuth flows in swagger UI
oauthAuthorizeUrl: ""
stationAuth:
# -- config containing authorization configuration for SF Station used when authentication is enabled for SF Station
configName: "station-auth-config"
secretName: "station-client-id"
# -- array of pre-defined watchlist member labels
watchlistMemberLabels: []
# - label: "employeeNumber"
# displayName: "Employee Number"
# - label: "registrationPlate"
# displayName: "Registration Plate"
# If the compatibilityVersion or extractionAlgorithm value is null, the default value is used.
# It is specifically intended for use during the process of migrating templates
# Use this setting with caution, because it can break functionality
faceTemplate:
# Example of possible values: 1.40, 1.39
compatibilityVersion: null
# Example of possible values: balanced, accurate_mask
extractionAlgorithm: null
features:
multitenancy:
# -- enabled for multitenant deployment
enabled: false
edgeStreams:
# -- sf-tenant-management.enabled needs to be enabled since tenant operator is responsible for populating wlStream
enabled: false
objectDetection:
# -- enable object detector, which can detect objects and pedestrian
enabled: false
offlineVideoProcessing:
# -- enable offline video processing services
enabled: false
experimentalFeatures:
qr:
# -- enable qr modality
enabled: false
# -- config for rabbitmq subchart, see https://github.com/bitnami/charts/tree/main/bitnami/rabbitmq
rabbitmq:
# -- configure if rabbitmq subchart should be included
enabled: true
extraPlugins: "rabbitmq_stream rabbitmq_stream_management rabbitmq_mqtt"
# -- service to publicly expose mqtt interface to be used by edge streams. Currently requires ALB controller https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.6/
mqttPublicService:
enabled: false
mqttDnsHost: ""
# -- if rabbitmq subchart is not included, then we need user-supplied configuration to satisfy SmartFace dependency on rabbitmq
rmqConfiguration:
# -- supply to bring your own configmap. The configmap needs following keys: `hostname`, `username`, `port`, `useSsl`, and optionally `streamsPort` when `features.edgeStreams.enabled` is `true`. Other configuration is not used if You provide existing config map.
existingConfigMapName: ""
# -- username for existing RabbitMQ instance
username: ""
# -- hostname of existing RabbitMQ instance
hostname: ""
# -- port of existing RabbitMQ instance
port: 5672
# -- set to `true` if existing RabbitMQ instance uses TLS
useSsl: false
# -- port for RabbitMQ streams protocol used only when `features.edgeStreams.enabled` is `true`
streamsPort: 5552
# -- if rabbitmq subchart is not included, then we need user-supplied configuration to satisfy SmartFace dependency on MQTT broker when `features.edgeStreams.enabled` is `true`
mqttConfiguration:
# -- supply to bring your own configmap. The configmap needs following keys: `hostname`, `username`, `port`, and `useSsl`. Other configuration is not used if You provide existing config map.
existingConfigMapName: ""
# -- username for existing RabbitMQ instance
username: ""
# -- hostname of existing MQTT broker
hostname: ""
# -- port of existing MQTT broker
port: 1883
# -- set to `true` if existing MQTT broker uses TLS
useSsl: false
auth:
# -- supply to bring you own secret. The secret needs to contain rabbitmq password under the key with name defined in `rabbitmq.auth.secretKey`
existingSecretName: ""
# -- define key of rabbitmq password in existing/provisioned secret
secretKey: "rabbitmq-password"
# -- username of created user in case that `rabbitmq.enabled` is `true`
username: "smartface"
# -- used by subchart
erlangCookie: ""
# -- used by subchart
password: ""
service:
extraPorts:
- name: mqtt
port: 1883
targetPort: 1883
- name: rmq-stream
port: 5552
targetPort: 5552
# -- config for minio subchart, see https://github.com/bitnami/charts/tree/main/bitnami/minio
minio:
enabled: true
defaultBuckets: "smartface"
# -- config for postgresql subchart, see https://github.com/bitnami/charts/tree/main/bitnami/postgresql
postgresql:
enabled: true
primary:
initdb:
scripts:
create-database.sql: "CREATE DATABASE smartface"
api:
enabled: true
name: "api"
servicePort: 80
containerPort: 80
dnsHost: ""
initMigration: true
# -- Annotations for api deployment
annotations: {}
# -- Annotations for api pods
podAnnotations: {}
# -- Additional labels for each api pod
podLabels: {}
service:
# -- Annotations for api Service
annotations: {}
# -- Additional labels for api Service
labels: {}
pdb:
# -- create PodDisruptionBudget for api component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "300M"
cpu: "250m"
limits:
memory: "4G"
nodeSelector: {}
tolerations: []
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-api
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the api component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
authApi:
enabled: false
name: "auth-api"
servicePort: 8098
containerPort: 80
dnsHost: ""
initMigration: true
# -- Annotations for authApi deployment
annotations: {}
# -- Annotations for authApi pods
podAnnotations: {}
# -- Additional labels for each authApi pod
podLabels: {}
service:
# -- Annotations for authApi Service
annotations: {}
# -- Additional labels for authApi Service
labels: {}
pdb:
# -- create PodDisruptionBudget for authApi component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "300M"
cpu: "250m"
limits:
memory: "4G"
nodeSelector: {}
tolerations: []
# -- number of replicas to use when autoscaling is not enabled for this component
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-api
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the auth-api component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
dbSynchronizationLeader:
# -- features.multitenancy needs to be enabled since tenant operator is responsible for populating wlStream
enabled: false
name: "db-synchronization-leader"
servicePort: 8100
containerPort: 80
dnsHost: ""
enableAuth: false
# -- Annotations for dbSynchronizationLeader deployment
annotations: {}
# -- Annotations for dbSynchronizationLeader pods
podAnnotations: {}
# -- Additional labels for each dbSynchronizationLeader pod
podLabels: {}
service:
# -- Annotations for dbSynchronizationLeader Service
annotations: {}
# -- Additional labels for dbSynchronizationLeader Service
labels: {}
pdb:
# -- create PodDisruptionBudget for dbSynchronizationLeader component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "300M"
cpu: "250m"
limits:
memory: "4G"
nodeSelector: {}
tolerations: []
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-db-synchronization-leader
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the dbSynchronizationLeader component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
graphqlApi:
enabled: true
name: "graphql-api"
servicePort: 8097
containerPort: 80
dnsHost: ""
enableAuth: false
initMigration: false
# -- Annotations for graphqlApi deployment
annotations: {}
# -- Annotations for graphqlApi pods
podAnnotations: {}
# -- Additional labels for each graphqlApi pod
podLabels: {}
service:
# -- Annotations for graphqlApi Service
annotations: {}
# -- Additional labels for graphqlApi Service
labels: {}
pdb:
# -- create PodDisruptionBudget for graphqlApi component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "300M"
cpu: "250m"
limits:
memory: "4G"
nodeSelector: {}
tolerations: []
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-graphql-api
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the graphqlApi component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
ingress:
# -- enable creation of ingress object
enabled: true
# -- set ingress class
class: ""
# -- supply custom ingress annotation
annotations:
# -- if enabled then the ingress will include default ALB annotations
includeAlbAnnotations: false
# -- only used if includeAlbAnnotations == true
certificateArn: ""
detector:
name: "detector"
# -- Annotations for detector deployment
annotations: {}
# -- Annotations for detector pods
podAnnotations: {}
# -- Additional labels for each detector pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for detector component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "600M"
cpu: "750m"
limits:
memory: "1500M"
nodeSelector: {}
tolerations: []
# -- number of replicas to use when autoscaling is not enabled for this component
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-detector
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Determines which face detection models are loaded at startup. You can specify one or more detection modes.
warmupDetectionAlgorithms:
- balanced_mask
#- fast
#- accurate_mask
#- balanced_experimental
# -- Additional environment variables for the detector component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
objectDetector:
enabled: false
name: "object-detector"
detectionAlgorithm: accurate
# -- Annotations for object detector deployment
annotations: {}
# -- Annotations for object detector pods
podAnnotations: {}
# -- Additional labels for each object detector pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for object detector component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "600M"
cpu: "750m"
limits:
memory: "1500M"
nodeSelector: {}
tolerations: []
# -- number of replicas to use when autoscaling is not enabled for this component
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-object-detector
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the objectDetector component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
extractor:
name: "extractor"
# -- Annotations for extractor deployment
annotations: {}
# -- Annotations for extractor pods
podAnnotations: {}
# -- Additional labels for each extractor pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for extractor component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "500M"
cpu: "750m"
limits:
memory: "1G"
nodeSelector: {}
tolerations: []
# -- number of replicas to use when autoscaling is not enabled for this component
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-extractor
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the extractor component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
matcher:
name: "matcher"
# -- Annotations for matcher deployment
annotations: {}
# -- Annotations for matcher pods
podAnnotations: {}
# -- Additional labels for each matcher pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for matcher component. Only works when `features.multitenancy` is disabled as PDB is not compatible with tenant operator
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "200M"
cpu: "750m"
nodeSelector: {}
tolerations: []
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-matcher
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the matcher component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
liveness:
name: "liveness"
# -- Annotations for liveness deployment
annotations: {}
# -- Annotations for liveness pods
podAnnotations: {}
# -- Additional labels for each liveness pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for liveness component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "200M"
cpu: "750m"
nodeSelector: {}
tolerations: []
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-liveness
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the liveness component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
relayController:
name: "relay-controller"
servicePort: 8080
containerPort: 8080
dnsHost: ""
# -- Annotations for relayController deployment
annotations: {}
# -- Annotations for relayController pods
podAnnotations: {}
# -- Additional labels for each relayController pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for relayController component
create: false
minAvailable: 1
maxUnavailable: ""
service:
# -- Annotations for api Service
annotations: {}
# -- Additional labels for api Service
labels: {}
resources:
requests:
memory: "300M"
cpu: "100m"
nodeSelector: {}
tolerations: []
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-relay-controller
# -- Overrides the image tag whose default is the chart's appVersion
tag: "0.1.0.21"
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the relayController component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
edgeStreamProcessor:
name: "edge-stream-processor"
# -- Annotations for edgeStreamProcessor deployment
annotations: {}
# -- Annotations for edgeStreamProcessor pods
podAnnotations: {}
# -- Additional labels for each edgeStreamProcessor pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for edgeStreamProcessor component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "100M"
cpu: "100m"
nodeSelector: {}
tolerations: []
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-edge-stream-processor
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the edgeStreamProcessor component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
edgeStreamsStateSync:
name: "edge-streams-state-synchronizer"
# -- Annotations for edgeStreamsStateSync deployment
annotations: {}
# -- Annotations for edgeStreamsStateSync pods
podAnnotations: {}
# -- Additional labels for each edgeStreamsStateSync pod
podLabels: {}
resources:
requests:
memory: "100M"
cpu: "100m"
nodeSelector: {}
tolerations: []
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-edge-streams-state-synchronizer
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the edgeStreamsStateSync component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
wlStreamPopulationJob:
enabled: false
resources: {}
nodeSelector: {}
tolerations: []
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-admin
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
base:
name: "base"
zmqServicePort: 2406
zmqContainerPort: 2406
# -- Annotations for base deployment
annotations: {}
# -- Annotations for base pods
podAnnotations: {}
# -- Additional labels for each base pod
podLabels: {}
service:
# -- Annotations for base Service
annotations: {}
# -- Additional labels for base Service
labels: {}
resources:
requests:
memory: "100M"
cpu: "100m"
nodeSelector: {}
tolerations: []
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-base
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the base component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
faceMatcher:
name: "face-matcher"
# -- Annotations for faceMatcher deployment
annotations: {}
# -- Annotations for faceMatcher pods
podAnnotations: {}
# -- Additional labels for each faceMatcher pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for faceMatcher component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "100M"
cpu: "100m"
nodeSelector: {}
tolerations: []
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-face-matcher
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the faceMatcher component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
accessController:
name: "access-controller"
authServiceName: "auth-access-controller"
dnsHost: ""
servicePort: 5050
containerPort: 80
authServicePort: 5051
authContainerPort: 5051
# -- Annotations for accessController deployment
annotations: {}
# -- Annotations for accessController pods
podAnnotations: {}
# -- Additional labels for each accessController pod
podLabels: {}
service:
# -- Annotations for accessController Service
annotations: {}
# -- Additional labels for accessController Service
labels: {}
resources:
requests:
memory: "100M"
cpu: "100m"
nodeSelector: {}
tolerations: []
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-access-controller
# -- Access Controller follows different versioning, so the chart app needs to be overridden
tag: "v5_1.13"
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
mqttConfig:
enabled: true
topic: "edge-stream/{sourceId}/access-notifications/{notificationType}"
sendImageData: false
filterConfiguration:
faceOrderConfiguration:
enabled: true
order: 1
openingDebounceConfiguration:
openingDebounceEnabled: true
openingDebounceMs: 4000
spoofCheckConfiguration:
enabled: false
denyingDebounceMs: 4000
# -- Additional environment variables for the accessController component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
station:
enabled: false
name: "station"
servicePort: 8000
containerPort: 80
dnsHost: ""
# -- Annotations for station deployment
annotations: {}
# -- Annotations for station pods
podAnnotations: {}
# -- Additional labels for each station pod
podLabels: {}
service:
# -- Annotations for station Service
annotations: {}
# -- Additional labels for station Service
labels: {}
resources:
requests:
memory: "100M"
cpu: "100m"
nodeSelector: {}
tolerations: []
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-station
# -- Smartface Station follows different versioning, so the chart app needs to be overridden
tag: "v5_1.28.0"
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the station component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
streamDataDbWorker:
name: "stream-data-db-worker"
# -- Annotations for streamDataDbWorker deployment
annotations: {}
# -- Annotations for streamDataDbWorker pods
podAnnotations: {}
# -- Additional labels for each streamDataDbWorker pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for streamDataDbWorker component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "100M"
cpu: "100m"
nodeSelector: {}
tolerations: []
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-streamdatadbworker
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the streamDataDbWorker component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
VideoAggregator:
name: "video-aggregator"
# -- Annotations for VideoAggregator deployment
annotations: {}
# -- Annotations for VideoAggregator pods
podAnnotations: {}
# -- Additional labels for each VideoAggregator pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for VideoAggregator component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "600M"
cpu: "750m"
limits:
memory: "1500M"
nodeSelector: {}
tolerations: []
# -- number of replicas to use when autoscaling is not enabled for this component
replicas: 1
image:
# -- The Docker registry, overrides `global.image.registry`
registry: null
# -- Docker image repository
repository: innovatrics/smartface/sf-video-aggregator
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
# -- Overrides the image tag with an image digest
digest: null
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Additional environment variables for the VideoAggregator component
# extraVars:
# - name: EXTRA_VAR1
# value: "value1"
# - name: EXTRA_VAR2
# value: "value2"
VideoCollector:
name: "video-collector"
# -- Annotations for VideoCollector deployment
annotations: {}
# -- Annotations for VideoCollector pods
podAnnotations: {}
# -- Additional labels for each VideoCollector pod
podLabels: {}
pdb:
# -- create PodDisruptionBudget for VideoCollector component
create: false
minAvailable: 1
maxUnavailable: ""
resources:
requests:
memory: "600M"
cpu: "750m"
limits:
memory: "1500M"
nodeSelector: {}
tolerations: []
# -- number of replicas to use when autoscaling is not enabled for this component