SIENTIAPDE-1193

chore: update image tag and enhance datetime column handling in orchestrator functions

- Updated the image tag in values.yaml from 0.4.2 to 0.4.4 for the latest version.
- Added support for datetime_columns in minimal_retrain and predictions_batch functions to improve timestamp handling in orchestrator functions.
This commit is contained in:
vitor-aignosi
2025-08-25 08:48:02 -03:00
parent 5692fa69e1
commit 92e5ccdcde
2 changed files with 3 additions and 1 deletions

View File

@@ -48,6 +48,7 @@ def minimal_retrain(config: dict[str, Any]):
"query": config['query'], "query": config['query'],
"schema": "sientia_data", "schema": "sientia_data",
"table_name": "log_retrain", "table_name": "log_retrain",
"datetime_columns": config.get('datetime_columns', []),
} }
@@ -187,6 +188,7 @@ def predictions_batch(config: dict[str, Any]):
**common_config(config), **common_config(config),
"query": config['query'], "query": config['query'],
"datetime_columns": config.get('datetime_columns', []),
"schema": "sientia_data", "schema": "sientia_data",
"table_name": "predictions", "table_name": "predictions",
"retention_time": config.get('model_retention_minutes', 60) * 60, "retention_time": config.get('model_retention_minutes', 60) * 60,

View File

@@ -11,7 +11,7 @@ image:
# This sets the pull policy for images. # This sets the pull policy for images.
pullPolicy: Always pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "0.4.2" tag: "0.4.4"
# 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/ # 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: imagePullSecrets: