Search code examples
argo-workflowsargoproj

Not able to load argo workflow UI


I am trying to follow this documentation https://argoproj.github.io/argo-workflows/quick-start/

To set up argo pod in my kubernetes ,everything works fine but when I am loading the ui in browser it is stuck at loading

The complete page is not loading some how Apart from port forwarding i tried creating a load balancer service as well but still it doesn't work

Any idea how to load the ui?


Solution

  • Its a known issue ,I guess there is some problem with the master branch

    so instead of creating deployment with master branch

    kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo-workflows/master/manifests/quick-start-postgres.yaml

    use stable branch like below

    kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo-workflows/stable/manifests/quick-start-postgres.yaml

    Hope it helps