-
Notifications
You must be signed in to change notification settings - Fork 29
Kubernetes Objects
Syed Sayem edited this page Mar 29, 2019
·
8 revisions
In Kubernetes, there are three general approaches to exposing your application.
- Using a Kubernetes service of type NodePort, which exposes the application on a port across each of your nodes
- Use a Kubernetes service of type LoadBalancer, which creates an external load balancer that points to a Kubernetes service in your cluster
- Use a Kubernetes Ingress Resource
Read more on Medium