You can expose services and pods in several ways:
- expose the internal ClusterIP service through Ingress, if you have that set up.
- change the service type to use 'type: LoadBalancer', which will try to create an external load balancer.
If you have external IP addresses on your kubernetes nodes, you can also expose the ports directly on the node hosts
- change the service type to 'type: NodePort', which will utilize a port above 30000 on all cluster machines.
- expose the pod directly using 'type: HostPort' in the pod spec.