Is Ingress working with ClusterIP services?
Nginx ingress controller on GKE works with ClusterIp. But the native GKE ingress controller does not as mentioned by @samuel-roze
So just use Nginx ingress like this:
kubernetes.io/ingress.class: nginx
The native GKE Ingress controller do not support ClusterIP
, only NodePort
is working.
Non-native Ingress controllers such as the nginx one do work with ClusterIP
services.