Understanding the different configuration options for your application
An application on Kubernetes is made up of one or more containers, spread across the worker nodes and exposed outside the cluster using different methods. The following table defines what will be configured and provides a map to other chapters that show additional configuration steps:
Application Configuration Domain |
Description |
Single Pod |
In this example, a single Pod can be pulled from a supported repository image and deployed to a specific namespace. |
Resilient deployment |
In this example, a Kubernetes Deployment will be used to deploy multiple Pods across different worker nodes, and the scheduler will maintain the desired number. |
Updating your Deployment |
In this example... |