Hello : :wave: My DAGs in the UI are not showing, ...
# ask-metaflow
b
Hello : 👋 My DAGs in the UI are not showing, and point me to an S3 issue. Since I am using a non-aws but S3 store, I updated my helm chart for the metaflow-ui section in values.yaml to add env vars for
AWS_ACCESS_KEY_ID
,
AWS_SECRET_ACCESS_KEY
,
AWS_DEFAULT_REGION
, which it picks up. Unfortunately it doesn't pick up my
AWS_ENDPOINT_URL
env var. And instead hits s3.amazonaws.com
Q: What env var do I need to set in the helm values.yaml overrides so that metaflow-ui service will talk to my non-aws S3 service? Ans:
METAFLOW_S3_ENDPOINT_URL
Use it in the
values.yaml
in the metaflow-UI section.
Copy code
env: 
    - name: METAFLOW_S3_ENDPOINT_URL
      value: 
    - name: AWS_ACCESS_KEY_ID
      value:
✅ 1