Hi, I’m relatively new to Kubernetes, and I deploy Chirpstack application server with kubernetes on a cluster of 5 Raspberry Pis, but I have problem accessing to the pod while I set IP of master node (RPi1-4) as external IP in service.yml
and kubectl get pods -o wide shows pod is running on another node (RPi1-1).
kubectl get pods -o wide shows:
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
chirpstack-application-server-846d8b8f8d-2k5pd 1/1 Running 1 4h36m 10.244.4.31 RPi1-1
I do not have access from my laptop to that external IP and port. (externalIP=master node’s IP)
I do not have access even from host node (RPi1-1) to the pod, and it gets:
curl: (7) Failed to connect to 10.244.4.31 port 30290: Connection refused
I would greatly appreciate it if some one could advise me what I should wrong and how to fix that.
Thank you in advance