Skip to content

Commit

Permalink
add some additional configuration for access controller
Browse files Browse the repository at this point in the history
  • Loading branch information
egid-fertal-inno committed Oct 22, 2024
1 parent cf481ef commit a791fab
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
13 changes: 13 additions & 0 deletions templates/edge-streams/access-controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,19 @@ spec:
value: {{ .Values.accessController.mqttConfig.topic | quote }}
- name: "MQTT__SendImageData"
value: {{ .Values.accessController.mqttConfig.sendImageData | quote }}

- name: "FilterConfiguration__FaceOrderConfiguration__Enabled"
value: {{ .Values.accessController.filterConfiguration.faceOrderConfiguration.enabled | quote }}
- name: "FilterConfiguration__FaceOrderConfiguration__Order"
value: {{ .Values.accessController.filterConfiguration.faceOrderConfiguration.order | quote }}
- name: "FilterConfiguration__OpeningDebounceConfiguration__OpeningDebounceEnabled"
value: {{ .Values.accessController.filterConfiguration.openingDebounceConfiguration.openingDebounceEnabled | quote }}
- name: "FilterConfiguration__OpeningDebounceConfiguration__OpeningDebounceMs"
value: {{ .Values.accessController.filterConfiguration.openingDebounceConfiguration.openingDebounceMs | quote }}
- name: "FilterConfiguration__SpoofCheckConfiguration__Enabled"
value: {{ .Values.accessController.filterConfiguration.spoofCheckConfiguration.enabled | quote }}
- name: "FilterConfiguration__SpoofCheckConfiguration__DenyingDebounceMs"
value: {{ .Values.accessController.filterConfiguration.spoofCheckConfiguration.denyingDebounceMs | quote }}
resources:
{{- toYaml .Values.accessController.resources | nindent 10 }}
volumeMounts:
Expand Down
10 changes: 10 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -739,6 +739,16 @@ accessController:
enabled: true
topic: "edge-stream/{sourceId}/access-notifications/{notificationType}"
sendImageData: false
filterConfiguration:
faceOrderConfiguration:
enabled: true
order: 1
openingDebounceConfiguration:
openingDebounceEnabled: true
openingDebounceMs: 4000
spoofCheckConfiguration:
enabled: true
denyingDebounceMs: 4000

station:
enabled: false
Expand Down

0 comments on commit a791fab

Please sign in to comment.