I have a question that’s not really related to the exam. What’s the point of usi . . .

techlead.93:
I have a question that’s not really related to the exam. What’s the point of using a ReplicaSet if you can create replicas of deployments and statefulsets? Even kubernetes documentation recommends using deployments instead. Is there a use case for it?

Apaar Sharma:
deployments use replicasets behind the scenes too, try editing the deployments. you will see two replica sets in the output one will be slowly terminating the pods while other will be creating pods.

techlead.93:
Cheers, just tested that and it was very helpful. I struggled to find an explanation online