Orchestration Manifest Lab
Instantly scaffold and validate Kubernetes YAML manifests for Deployments, Services, and Ingress controllers with best-practice templates.
The Kubernetes Way
Kubernetes (K8s) is an open-source system for automating deployment, scaling, and management of containerized applications. It groups containers into logical units (Pods) for easy discovery and management.
Deployments: A Deployment provides declarative updates for Pods and ReplicaSets. You describe a desired state in a Deployment, and the Deployment Controller changes the actual state to the desired state at a controlled rate.
Services: An abstract way to expose an application running on a set of Pods as a network service. This provides a stable IP and DNS name even as Pods are created or destroyed.