Skip to content

Commit

Permalink
SMAR-3017 fix, enable set to false does work again in palms
Browse files Browse the repository at this point in the history
  • Loading branch information
egid-fertal-inno committed Dec 31, 2024
1 parent 9ab5c67 commit 8efdf69
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [Unreleased]

### 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 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 8efdf69

Please sign in to comment.