Hi all! :smile: I'm having some issues getting th...
# ask-metaflow
n
Hi all! 😄 I'm having some issues getting the helm-chart deployed. It seems the components connect correctly to S3 and the database, though when I create the ingress in
metaflow-ui.ingress
and access it, I'll simply get the
Error Loading Data
(As shown below) I'm clearly doing something wrong. Does anyone happen to have a full values file for the chart, they can send me, so I have a clear idea of what should work? 🙂 Thank you very much 🙏
b
Hey @nice-agency-96111, What logs do you see in the ui pod..? I guess you've checked the default ui values file here? https://github.com/outerbounds/metaflow-tools/blob/master/charts/metaflow/charts/metaflow-ui/values.yaml Based on that I have working config like this right at the top of our values file:
Copy code
metaflow-ui:
  ingress:
    annotations:
      <http://cert-manager.io/cluster-issuer|cert-manager.io/cluster-issuer>: <name-of-certificate-issuer>
    hosts:
      - host: <http://metaflow-ui.domain-name.app|metaflow-ui.domain-name.app>
    className: <ingress-classname>
    tls:
      - secretName: metaflow-ui-cert
        hosts:
          - <http://metaflow-ui.domain-name.app|metaflow-ui.domain-name.app>
n
I think I made it work! Just working on the UI DAG access now, and then onto ArgoWF/ArgoEvents 😄 Do you know if there's any documentation regarding hooking the deployment (through helm-chart) into argowf/events?
h
While we don't yet have an explicit documentation, you can look at this tiltfile to figure out how to wire up argo-workflows and argo-events.