You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
4>RC ( ReplicationController responsible for managing the pod lifecycle ) created object.
5>RS(ReplicaSet is the next-generation Replication, only differnce is selector support. Means ReplicaSet supports the new set-based selector requirements as described in the labels whereas a Replication Controller only supports equality-based selector requirements) created object
6>Deploment RollingUpdate create for slowly slowly create pod and slowly slowly delete the pod, it's high availabilty without cluster downtime it's replace new pods.
7>Deployment Recreate strategy create, it's at time all pod delete it and receate all pod again. So somedowntime is their in this Deployment strategy.
8>Resources Requests & limit set up on Deployment pods. We can manage the cluster resources by using set this Resources requests & limits.