![[Pasted image 20250114165027.png]]
Kubernetes Services provide a stable network endpoint to access a group of Pods. They enable communication between different components of an application (e.g., frontend and backend) and can expose Pods to the outside world. Common types include:
- ClusterIP: Default; exposes the service within the cluster.
- NodePort: Exposes the service on a static port on each node.
- LoadBalancer: Integrates with cloud provider load balancers to expose the service externally.
![[Pasted image 20250114165745.png]]