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}
Exception: MLflow tracking URI not found in credentials.
envars
, something likeexport MLFLOW_TRACKING_USERNAME=username
.