,i have installed argo on aws eks…but not able to access the argocd UI with pulbic ip of worker node,
also tried with port-forwaridin…
kindly hlep on this issue…
also tried with port-forwaridin…
kindly hlep on this issue…
Hi,
Please check the worker node’s security group. Does it allow port 9000?
I just tried it on my side. You need to use NodePort to access ArgoCD via the worker node’s public IP.
Here’s the command to do that:
kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "NodePort"}}'
Since your kubectl
is running in Cloud Shell, we have to access the server host Cloudshell, I don’t think it is a good idea, so using NodePort is a better solution in this case.