Service

Service Presets

Ready-to-deploy configuration presets for Service. Each preset is a complete manifest you can copy, customize, and deploy.

3 presets
01

ClusterIP Service

This preset creates a standard ClusterIP service that exposes a deployment internally within the cluster. The most common Kubernetes Service type for inter-service communication.

02

LoadBalancer Service

This preset creates a LoadBalancer service that provisions a cloud load balancer with a public IP. Suitable for services that need direct external access without an ingress controller.

03

Headless Service

This preset creates a headless service (ClusterIP: None) for direct pod-to-pod DNS resolution. Essential for StatefulSets and any application that needs to discover individual pod IPs rather than a...