I have 2 pods running on minikube. Pod A has to expose 2 ports
8081 and 9092 to both Pod B inside the k8 cluster
and also outside k8 cluster
so that pod B can reach them and also outside the cluster my consumer can reach them.So my question is should
I have 2 services
created for each port?
One to expose as cluster ip and one for node port? Or is there a way to have a single service created to expose this as both cluster IP and NodePort?
Also if I have to expose my node port as a particular port, would specifying nodePort
mess up with the cluster ip?