SIENTIAPDE-1273

Update image tag to 1.1.2 in values.yaml and refactor prediction data sorting in model_repository.py for improved clarity and consistency.
This commit is contained in:
vitor-aignosi
2025-11-18 09:16:42 -03:00
parent 6ae83d90be
commit 388685df6e
2 changed files with 3 additions and 3 deletions

View File

@@ -723,7 +723,7 @@ class MLFlowRepository(SientiaMonitoring):
prediction_data.index = input_index
# Merge prediction data with retrain_dataset on index
prediction_data = pd.merge(
prediction_data = pd.merge( # NOSONAR
retrain_dataset, prediction_data, left_index=True, right_index=True, how='left'
)
@@ -734,7 +734,7 @@ class MLFlowRepository(SientiaMonitoring):
prediction_data.reset_index(drop=True, inplace=True)
prediction_data.sort_values(by='timestamp', ascending=True, inplace=True)
prediction_data = prediction_data.sort_values(by='timestamp', ascending=True)
return prediction_data

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: "1.1.1"
tag: "1.1.2"
0# 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: