From 9e7efaa0bf51d20632c91627d4df8bcae837f86f Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:53:08 +0200 Subject: [PATCH] fix(frigate): quote all floats in values.yaml. because questions.yaml schema fails to validate when applying empty value (#5204) --- charts/incubator/frigate/Chart.yaml | 2 +- charts/incubator/frigate/values.yaml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/charts/incubator/frigate/Chart.yaml b/charts/incubator/frigate/Chart.yaml index c574e7166cd..553ad180e59 100644 --- a/charts/incubator/frigate/Chart.yaml +++ b/charts/incubator/frigate/Chart.yaml @@ -24,7 +24,7 @@ sources: - https://github.com/blakeblackshear/frigate - https://hub.docker.com/r/blakeblackshear/frigate type: application -version: 5.0.8 +version: 5.0.9 annotations: truecharts.org/catagories: | - nvr diff --git a/charts/incubator/frigate/values.yaml b/charts/incubator/frigate/values.yaml index 3afe6ff9908..e69097d995c 100644 --- a/charts/incubator/frigate/values.yaml +++ b/charts/incubator/frigate/values.yaml @@ -166,13 +166,13 @@ frigate: # # -- Optional: Maximum width*height of the bounding box for the detected object # max_area: 100000 # # -- Optional: Minimum width/height of the bounding box for the detected object - # min_ratio: 0.5 + # min_ratio: "0.5" # # -- Optional: Maximum width/height of the bounding box for the detected object - # max_ratio: 2.0 + # max_ratio: "2.0" # # -- Optional: Minimum score for the object to initiate tracking - # min_score: 0.5 + # min_score: "0.5" # # -- Optional: Minimum decimal percentage for tracked object's computed score to be considered a true positive - # threshold: 0.7 + # threshold: "0.7" # # -- Optional: Mask to prevent this object type from being detected in certain areas # # - Checks based on the bottom center of the bounding box of the object # mask: 0,0,1000,0,1000,200,0,200 @@ -195,12 +195,12 @@ frigate: # -- Optional: Alpha value passed to cv2.accumulateWeighted when averaging the motion delta across multiple frames # - Higher values mean the current frame impacts the delta a lot, and a single raindrop may register as motion. # - Too low and a fast moving person wont be detected as motion. - delta_alpha: 0.2 + delta_alpha: "0.2" # -- Optional: Alpha value passed to cv2.accumulateWeighted when averaging frames to determine the background # - Higher values mean the current frame impacts the average a lot, and a new object will be averaged into the background faster. # - Low values will cause things like moving shadows to be detected as motion for longer. # - https://www.geeksforgeeks.org/background-subtraction-in-an-image-using-concept-of-running-average/ - frame_alpha: 0.2 + frame_alpha: "0.2" # -- Optional: Height of the resized motion frame (default: 50) # - This operates as an efficient blur alternative. Higher values will result in more granular motion detection at the expense # - of higher CPU usage. Lower values result in less CPU, but small changes may not register as motion. @@ -390,7 +390,7 @@ frigate: - object: person min_area: 5000 max_area: 100000 - threshold: 0.7 + threshold: "0.7" # -- Optional: Configuration for the jpg snapshots published via MQTT mqtt: # -- Enable it to add the configuration in the config file