This pattern encourages the definition of application dependencies up-front.
What is the "Predictable Demands" pattern?
This design described by this pattern forms the basis of several other patterns.
What is the "Sidecar" pattern?
This pattern provides the basis for what we know as "load balancers".
What is the "Service Discovery" pattern?
Kubernetes services that keep resources synced up with their definitions are defined by this pattern.
What is the "Controller" pattern?
Kubernetes employs this core pattern right before it deploys a pod for an application.
What is the "Automated Placement/Scheduling" pattern?
This container type is used by the Scatter/Gather and other patterns to execute tasks.
What is a "Leaf" container?
What is the "Batch" pattern?
This pattern provides the basis for Kubernetes CustomResouceDefinitions.
What is the "Operator" pattern?
This pattern helps Kubernetes detect and replace broken pods.
What is the "Health Probe" pattern?
These two patterns, which are similar in architecture, support connections to and from external services.
What are the Ambassador and Adapter patterns?
This pattern guarantees the ordering and uniqueness of the pods that make up an application.
What is the Stateful Service pattern?
3rd party extensions to Kubernetes follow this pattern.
What is the Operator pattern?
This Kubernetes function decides which node a pod should be loaded on.
What is the Scheduling function?
This pattern uses an external application to help manage an application's networking, observability and security.
What is the Service Mesh pattern?
REST servers, Database systems and Corporate server applications are "units of work" of this kind.
What is Long Running units of work?
This pattern allows a group of related processes to manage common operations without a dedicated external management application.
What is the Leader or Primary Active Election Pattern?
Information required by this core pattern is defined in an application's deployment yaml file.
What is the Predictable Demands pattern?
According to this pattern an application's start-up configuration is moved to a separate container.
What is the Init Container pattern?
How to connect to one of several identical instances is a problem this pattern addresses.
What is the Service Discovery pattern?
This pattern support the execution of multiple related tasks in parallel.
What is the Scatter/Gather pattern?