File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
docs/concepts/workloads/controllers Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,11 @@ A _Deployment_ provides declarative updates for [Pods](/docs/concepts/workloads/
16
16
[ ReplicaSets] ( /docs/concepts/workloads/controllers/replicaset/ ) (the next-generation ReplicationController).
17
17
You only need to describe the desired state in a Deployment object, and the Deployment controller will
18
18
change the actual state to the desired state at a controlled rate for you. You can define Deployments to
19
- create new resources, or replace existing ones by new ones.
19
+ create new ReplicaSets, or remove existing Deployments and adopt all of their resources with new Deployments.
20
+
21
+ ** Note** You should not manage ReplicaSets owned by a Deployment, otherwise you are racing with the Deployment
22
+ controller! All of the use cases should be covered just by manipulating the Deployment object. Consider opening
23
+ an issue in the main Kubernetes repository, if your use case is not covered below.
20
24
21
25
A typical use case is:
22
26
You can’t perform that action at this time.
0 commit comments