docs(kubernetes): add content for k8s deployments (#6973)

pull/6977/head
Ari Yonaty 2 months ago committed by GitHub
parent db8ee31ed3
commit 0c000df830
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      src/data/roadmaps/kubernetes/content/103-running-applications/102-deployments.md

@ -1,3 +1,10 @@
# Deployments
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…
Cancel
Save