Skip to content

Commit

Permalink
Merge pull request #42 from innovatrics/SMAR-3017-fix-bug-disable-pal…
Browse files Browse the repository at this point in the history
…ms-doesnot-work

SMAR-3017 fix, enable set to false does work again in palms
  • Loading branch information
egid-fertal-inno authored Jan 3, 2025
2 parents 9ab5c67 + 5a118fc commit a71fb0a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [v0.8.10]

### Changed

- Fixed an issue that prevented the palm feature from being disabled when features.palms.enabled was set to false

## [v0.8.9]

### Added
Expand Down
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.8.9
version: 0.8.10

appVersion: "v5_4.29.0"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# smartface

![Version: 0.8.9](https://img.shields.io/badge/Version-0.8.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5_4.29.0](https://img.shields.io/badge/AppVersion-v5_4.29.0-informational?style=flat-square)
![Version: 0.8.10](https://img.shields.io/badge/Version-0.8.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5_4.29.0](https://img.shields.io/badge/AppVersion-v5_4.29.0-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
2 changes: 1 addition & 1 deletion templates/palms/palm-detector-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.features.palms }}
{{- if .Values.features.palms.enabled }}
{{- $name := include "smartface.palmDetector.name" . -}}
{{- $selectorLabels := include "smartface.palmDetector.selectorLabels" . -}}
apiVersion: "apps/v1"
Expand Down
2 changes: 1 addition & 1 deletion templates/palms/palm-extractor-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.features.palms }}
{{- if .Values.features.palms.enabled }}
{{- $name := include "smartface.palmExtractor.name" . -}}
{{- $selectorLabels := include "smartface.palmExtractor.selectorLabels" . -}}
apiVersion: "apps/v1"
Expand Down

0 comments on commit a71fb0a

Please sign in to comment.