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.
This commit is contained in:
vitor-aignosi
2025-08-22 15:13:04 -03:00
parent 96a28e91e5
commit 39ba82b539
2 changed files with 3 additions and 3 deletions

View File

@@ -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}")

View File

@@ -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: