SIENTIAPDE-1478

Update coverage source in pyproject.toml, add testcontainers for PostgreSQL in requirements-dev.txt, increment image tag and adjust probe delays in values.yaml, and refine condition checks in format_and_export_prediction.py and mlflow.py. Additionally, enhance test coverage in test_gates.py.
This commit is contained in:
vitor-aignosi
2026-01-14 16:01:03 -03:00
parent 34e8cce282
commit 63017754a8
13 changed files with 3001 additions and 8 deletions

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.0.1"
tag: "1.1.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:
@@ -71,7 +71,7 @@ livenessProbe:
- -c
- |
curl -sf http://localhost:9090/metrics | grep -q '^app_up{.*} 1'
initialDelaySeconds: 360
initialDelaySeconds: 660
periodSeconds: 15
timeoutSeconds: 5
failureThreshold: 3
@@ -83,7 +83,7 @@ readinessProbe:
- -c
- |
curl -sf http://localhost:9090/metrics | grep -q '^app_up{.*} 1'
initialDelaySeconds: 300
initialDelaySeconds: 600
periodSeconds: 10
timeoutSeconds: 3
failureThreshold: 2