Flora:
hi, I have created a pod
k run nginx --image nginx
and i have created a Node port svc:
k expose po nginx --name svc-nginx --port 80 --type NodePort
and when I run get svc I have :
svc-nginx NodePort 10.100.156.236 <none> 80:32024/TCP 8s
but when I do curl like this it is not working, why? :
curl 10.100.156.236:32024
curl svc-nginx:32024