Viresh Badiger:
Hello all need help from you
I have installed minikube on ec2 machine then i installed argocd on it and changed argocd-server service to node port.
After that i am trying to connect application using
<Publicip of ec2>:<nodeport>
But not able to access and getting error like refused to connect and checking the connection and proxy, firewall
Note: i opened all traffic to ec2 machine
fabrizzio aranda:
I think you need to expose the minikube api server for that purpose
Alistair Mackay:
Minikube is not designed to be accessed from machines other than the machine it is installed on.
You may be able to do it this way, but the tunnel process described must be running on the host machine at all times
https://minikube.sigs.k8s.io/docs/handbook/accessing/#loadbalancer-access
For something slightly more robust, you could install a <https://kind.sigs.k8s.io/|kind cluster> where the node ports don’t need to be tunneled however both minikube and kind are for learning/testing/development and not for permanent production workloads.
Viresh Badiger:
Thanks @Alistair Mackay for giving this information.