Skip to content

Commit 43b7a89

Browse files
committed
fix: add MLFLOW_FLASK_SERVER_SECRET_KEY to CI test values
MLflow 3.x requires MLFLOW_FLASK_SERVER_SECRET_KEY environment variable. The CI test values file was missing this configuration, causing the server to fail to start during CI tests even though it worked locally with default values.
1 parent e813319 commit 43b7a89

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

applications/mlflow/tests/helm/nodeport-ingress-disabled.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,20 @@
22
# These values specifically configure the service to use NodePort for testing
33

44
mlflow:
5-
ingress:
5+
ingress:
66
enabled: false
77
# Service configuration for MLflow
88
service:
99
# Use NodePort to expose the service on a specific port
1010
type: NodePort
1111
# Service port number (internal)
1212
port: 5000
13-
# Hardcoded nodePort for consistent access
13+
# Hardcoded nodePort for consistent access
1414
# Note: Must be between 30000-32767
1515
nodePort: 30080
1616
# Service port name
1717
name: http
18+
# Environment configuration
19+
env:
20+
configMap:
21+
MLFLOW_FLASK_SERVER_SECRET_KEY: "change-me-in-production"

0 commit comments

Comments
 (0)