Skip to content

Commit 48a5393

Browse files
authored
Merge pull request #37330 from guettli/patch-9
Reword explanation of ClusterIP for Services
2 parents 62a0b5b + d24640e commit 48a5393

File tree

1 file changed

+2
-0
lines changed
  • content/en/docs/concepts/services-networking

1 file changed

+2
-0
lines changed

content/en/docs/concepts/services-networking/service.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,8 @@ Kubernetes `ServiceTypes` allow you to specify what kind of Service you want.
483483
* `ClusterIP`: Exposes the Service on a cluster-internal IP. Choosing this value
484484
makes the Service only reachable from within the cluster. This is the
485485
default that is used if you don't explicitly specify a `type` for a Service.
486+
You can expose the service to the public with an [Ingress](docs/reference/kubernetes-api/service-resources/ingress-v1/) or the
487+
[Gateway API](https://gateway-api.sigs.k8s.io/).
486488
* [`NodePort`](#type-nodeport): Exposes the Service on each Node's IP at a static port
487489
(the `NodePort`).
488490
To make the node port available, Kubernetes sets up a cluster IP address,

0 commit comments

Comments
 (0)