From 39ba82b539a630906a80edf3351c920f0a07fe4e Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Fri, 22 Aug 2025 15:13:04 -0300 Subject: [PATCH] SIENTIAPDE-1193 Update image tag to 0.4.3 in values.yaml and refactor Redis key format for last data timestamp to use colons for improved readability. --- scouter/activities/redis.py | 4 ++-- values.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scouter/activities/redis.py b/scouter/activities/redis.py index e7443a1..7b62ee2 100644 --- a/scouter/activities/redis.py +++ b/scouter/activities/redis.py @@ -27,7 +27,7 @@ class Redis(RedisBase): Gets the last data timestamp from redis. """ metadata = input_data['metadata'] - key = f"last_data_timestamp_{input_data['workflow_name']}_{input_data['schedule_name']}" + key = f"last_data_timestamp:{input_data['workflow_name']}:{input_data['schedule_name']}" self.info(f"Getting last data timestamp for {key}") @@ -60,7 +60,7 @@ class Redis(RedisBase): Puts the last data timestamp into redis. """ metadata = input_data['metadata'] - key = f"last_data_timestamp_{input_data['workflow_name']}_{input_data['schedule_name']}" + key = f"last_data_timestamp:{input_data['workflow_name']}:{input_data['schedule_name']}" self.info(f"Putting last data timestamp for {key}") diff --git a/values.yaml b/values.yaml index 813f223..4bb3331 100644 --- a/values.yaml +++ b/values.yaml @@ -11,7 +11,7 @@ image: # This sets the pull policy for images. pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "0.4.2" + tag: "0.4.3" # This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ imagePullSecrets: