I'm new to Kubernetes.
I have a question about Kubernetes deployment replicas. kubernetes official web site
If I set replicas on a deployment yaml, does it means replica pods would work at the same time on the cluster? or only one pod would offer services and other replicated pods work like waiting player and will be replaced when working pod shut down accidentally?
For example, if I declare 3 replicas on a deployment yaml, only 1 pod really work on the cluster and other 2 pods waiting for replacement time like when working pod shut down accidentally.