🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

Cloud Computing Intermediate

What is Kubernetes Service?

An abstraction that provides a stable network endpoint for accessing a group of Pods, handling load balancing and service discovery.

Services provide a stable IP address and DNS name for a set of Pods selected by labels. Types include ClusterIP (internal only), NodePort (external via node ports), LoadBalancer (cloud load balancer), and ExternalName (DNS alias).

Services handle the problem of Pod ephemerality — Pods come and go, but the Service endpoint remains constant. kube-proxy implements load balancing across Pod replicas. Ingress controllers manage external HTTP/HTTPS access to Services.

Related Terms

Multi-Cloud
A strategy of using services from multiple cloud providers to avoid vendor lock-in and leverage best-of-breed capabilities.
Cloud Computing
The delivery of computing services over the internet, including servers, storage, databases, and software on demand.
Serverless Computing
A cloud execution model where the provider manages servers and dynamically allocates resources, charging only for actual usage.
Virtual Machine (VM)
A software-based emulation of a physical computer that runs its own operating system and applications.
Object Storage
A storage architecture that manages data as objects with metadata and unique identifiers, ideal for unstructured data at scale.
Cloud Function
A serverless compute service that runs code in response to events without requiring server management or infrastructure provisioning.
View All Cloud Computing Terms →