is there a way to get a clusterip service's intern...
# kubernetes
b
is there a way to get a clusterip service's internal ip, or can you only get the ip of a loadbalancer service?
g
That info should be available from
.spec.clusterIP
once the Service is provisioned
b
i want to
proxy_pass
to a deployment/service i'm creating, what's the best way to do that? should i be using its hostname and using kube-dns to resolve it, or will pulumi wait until the service has a
clusterIP
if i use the
.spec.clusterIP
somewhere?
g
It should be safe to use once Pulumi marks the Service as ready.
👍 1