Unable to access the ARGO CD web UI getting 503 error
Opened this issue · 1 comments
kamleshmjain commented
todd-dsm commented
I had issues too; but, I ran with minkube as it's very mature which provides a stable interface that other programs can connect with easily. Here's the process:
These Minikube settings that will persist over all instantiations; adjust for your hardware:
% minikube config view
- memory: 8192
- WantVirtualBoxDriverWarning: false
- cpus: 4
- driver: docker
Post-bootstrap, enable the Minikube Addon: Ingress
minikube start
minikube addons enable ingress
Finally, when registering a cluster, the --in-cluster
flag must be passed:
argocd cluster add minikube --in-cluster
After that, everything should be available here: https://127.0.0.1/applications.
I hope this helps.