docs(kubernetes): add content for k8s deployments (#6973)
parent
db8ee31ed3
commit
0c000df830
1 changed files with 8 additions and 1 deletions
@ -1,3 +1,10 @@ |
|||||||
# Deployments |
# Deployments |
||||||
|
|
||||||
- [@official@Deployments Documentation](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/) |
A Deployment is a resource object for managing Pods and ReplicaSets via a declarative configuration, which define a desired state that describes the application workload life cycle, number of pods, deployment strategies, container images, and more. The Deployment Controller works to ensure the actual state matches desired state, such as by replacing a failed pod. Out of the box, Deployments support several deployment strategies, like "recreate" and "rolling update", however can be customized to support more advanced deployment strategies such as blue/green or canary deployments. |
||||||
|
|
||||||
|
Visit the following resources to learn more: |
||||||
|
|
||||||
|
- [@official@Deployments Documentation](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/) |
||||||
|
- [@video@Kubernetes Deployments | Deployment Strategies](https://youtu.be/lxc4EXZOOvE) |
||||||
|
- [@article@Kubernetes Deployment: From Basic Strategies to Progressive Delivery |
||||||
|
](https://codefresh.io/learn/kubernetes-deployment/) |
||||||
|
Loading…
Reference in new issue