Topic 1 Question 150
The new version of your containerized application has been tested and is ready to deploy to production on Google Kubernetes Engine. You were not able to fully load-test the new version in pre-production environments, and you need to make sure that it does not have performance problems once deployed. Your deployment must be automated. What should you do?
Use Cloud Load Balancing to slowly ramp up traffic between versions. Use Cloud Monitoring to look for performance issues.
Deploy the application via a continuous delivery pipeline using canary deployments. Use Cloud Monitoring to look for performance issues. and ramp up traffic as the metrics support it.
Deploy the application via a continuous delivery pipeline using blue/green deployments. Use Cloud Monitoring to look for performance issues, and launch fully when the metrics support it.
Deploy the application using kubectl and set the spec.updateStrategv.type to RollingUpdate. Use Cloud Monitoring to look for performance issues, and run the kubectl rollback command if there are any issues.
ユーザの投票
コメント(8)
- 正解だと思う選択肢: B
B. Deploy the application via a continuous delivery pipeline using canary deployments. Use Cloud Monitoring to look for performance issues, and ramp up traffic as the metrics support it.
Canary deployment strategy can be used to mitigate risk in the production deployment process. In this strategy, a small subset of traffic is routed to the new version of the application, while the rest of the traffic is sent to the current version. This allows for real-time monitoring of the new version's performance before fully rolling it out to all users. If there are any issues or performance problems, the traffic can be immediately routed back to the previous version. Cloud Monitoring can be used to monitor performance metrics and make informed decisions about when to ramp up traffic to the new version
👍 3Teraflow2023/03/31 https://kubernetes.io/docs/tutorials/kubernetes-basics/update/update-intro/ https://cloud.google.com/kubernetes-engine/docs/how-to/updating-apps#overview Answer D. The rest need testing before...
👍 2TNT872022/12/25- 正解だと思う選択肢: D
Answer D https://kubernetes.io/docs/tutorials/kubernetes-basics/update/update-intro/ https://cloud.google.com/kubernetes-engine/docs/how-to/updating-apps#overview Kindly master the requirements of the question, and be very aware of the question's key words
👍 2TNT872023/01/06
シャッフルモード