Join the Kedro community

Home
Members
Shubham
S
Shubham
Offline, last seen 2 months ago
Joined November 7, 2024

Hey folks.
I am trying to pass mlflow credentials to streamlit page via oc.env [via kedro]. Any idea what could be causing the credentials to not be passed? These exist in the ECS task definition but not being passed to the streamlit page.

credentials.yml

mlflow:
  tracking_uri: ${oc.env:MLFLOW_TRACKING_URI}
  username: ${oc.env:MLFLOW_TRACKING_USERNAME}
  password: ${oc.env:MLFLOW_TRACKING_PASSWORD}

ERROR:
Exception: MLflow tracking URI not found in credentials.

This works perfectly fine when testing in local env with manually passing the credentials to envars , something like
export MLFLOW_TRACKING_USERNAME=username.

more info on kedro way

10 comments
L
S