Hi, Im unable to to get cards rendered in the ui. ...
# ask-metaflow
h
Hi, Im unable to to get cards rendered in the ui. Opening "Link to card" buttons returns 404. Here's the url like:
Copy code
<https://metaflow-ui.custom-domain.com/api/flows/><flowname>/runs/<int>/steps/start/tasks/<int>/cards/default/b536b0266f7744c2a28e6d00c6ecdfeb
I have deployed on k8s using helm charts Images:
public.ecr.aws/outerbounds/metaflow_metadata_service:v2.5.0
public.ecr.aws/outerbounds/metaflow_ui:v1.3.5-157-gfc826fad-obp
Please do let me know if im missing anything or i need share any other details
Virtual service:
Copy code
apiVersion: <http://networking.istio.io/v1|networking.istio.io/v1>
kind: VirtualService
metadata:
  name: metaflow-ui-vs
  namespace: metaflow
spec:
  hosts:
    - {{ .Values.virtualService.host | quote }}
  gateways:
    - {{ .Values.virtualService.gateway | quote }}
  http:
    - match:
        - uri:
            prefix: /api
      route:
        - destination:
            host: {{ printf "%s-metaflow-ui.metaflow.svc.cluster.local" .Release.Name }}
            port:
              number: 8083
    - match:
        - uri:
            prefix: /
      route:
        - destination:
            host: {{ printf "%s-metaflow-ui-static.metaflow.svc.cluster.local" .Release.Name }}
            port:
              number: 3000