Your team is aiming to use desired state configuration for your application deployed on a GKE cluster. You have YAML files for Kubernetes Deployment and Service objects. The application is designed to run with 2 pods, as specified by the replicas parameter in `app-deployment.yaml`. The service utilizes a GKE Load Balancer, defined in `app-service.yaml`. After creating the Kubernetes resources with `kubectl apply -f app-deployment.yaml` and `kubectl apply -f app-service.yaml`, the deployment is now live but experiencing performance issues. To address this, you decide to increase the number of replicas to 5. What is the correct approach to update the replicas in the existing Kubernetes deployment objects? | Google Associate Cloud Engineer Quiz - LeetQuiz