Skip to content

Commit

Permalink
fix condition for dbSynchronizationLeader
Browse files Browse the repository at this point in the history
  • Loading branch information
marek-nereca committed Apr 18, 2024
1 parent d339c64 commit a1c4b92
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ maintainers:
- name: Innovatrics
url: https://www.innovatrics.com/

version: 0.7.0
version: 0.7.1

appVersion: "v5_4.25.2"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# smartface

![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5_4.25.2](https://img.shields.io/badge/AppVersion-v5_4.25.2-informational?style=flat-square)
![Version: 0.7.1](https://img.shields.io/badge/Version-0.7.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5_4.25.2](https://img.shields.io/badge/AppVersion-v5_4.25.2-informational?style=flat-square)

SmartFace is a Scalable Facial Recognition Server Platform Able to Process Multiple Real-Time Video Streams. Currently the helm chart supports edge stream and Lightweight Face Identification System (LFIS) deployments

Expand Down Expand Up @@ -393,7 +393,7 @@ metadata:
| faceMatcher.resources.requests.cpu | string | `"100m"` | |
| faceMatcher.resources.requests.memory | string | `"100M"` | |
| faceMatcher.tolerations | list | `[]` | |
| features.edgeStreams.enabled | bool | `false` | features.multitenancy needs to be enabled since tenant operator is responsible for populating wlStream |
| features.edgeStreams.enabled | bool | `false` | sf-tenant-operator.enabled needs to be enabled since tenant operator is responsible for populating wlStream |
| features.multitenancy.enabled | bool | `false` | enabled for multitenant deployment. Will include sf-tenant-operator subchart if enabled |
| global.image.registry | string | `"registry.gitlab.com"` | Overrides the Docker registry globally for all images |
| graphqlApi.annotations | object | `{}` | Annotations for graphqlApi deployment |
Expand Down
2 changes: 1 addition & 1 deletion templates/db-synchronization-leader-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.dbSynchronizationLeader.enabled .Values.features.multitenancy }}
{{- if and .Values.dbSynchronizationLeader.enabled (index .Values "sf-tenant-operator" "enabled") }}
{{- $name := include "smartface.dbSynchronizationLeader.name" . -}}
{{- $selectorLabels := include "smartface.dbSynchronizationLeader.selectorLabels" . -}}
apiVersion: "apps/v1"
Expand Down
2 changes: 1 addition & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ features:
# -- enabled for multitenant deployment. Will include sf-tenant-operator subchart if enabled
enabled: false
edgeStreams:
# -- features.multitenancy needs to be enabled since tenant operator is responsible for populating wlStream
# -- sf-tenant-operator.enabled needs to be enabled since tenant operator is responsible for populating wlStream
enabled: false

# -- config for rabbitmq subchart, see https://github.com/bitnami/charts/tree/main/bitnami/rabbitmq
Expand Down

0 comments on commit a1c4b92

Please sign in to comment.