Note: This question is part of series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
A company has custom ASP.NET and Java applications that run on old versions of Windows and Linux. The company plans to place applications in containers.
You need to design a solution that includes networking, service discovery, and load balancing for the applications. The solution must support storage orchestration.
Solution: You deploy each application to an Azure Web App that has container support.
Does the solution meet the goal?
Click on the arrows to vote for the correct answer
A. B.B
The proposed solution suggests deploying each application to an Azure Web App that has container support. While this approach could work, it does not meet all the requirements specified in the scenario.
The scenario states that the solution must include networking, service discovery, and load balancing for the applications, along with storage orchestration. Deploying the applications to an Azure Web App with container support would only address the containerization aspect of the solution. It would not provide the necessary networking, service discovery, load balancing, or storage orchestration features.
To address all of these requirements, a better solution would be to use Azure Kubernetes Service (AKS). AKS is a managed Kubernetes service that can provide all the necessary features to run containerized applications. AKS can orchestrate container storage, handle service discovery and load balancing, and provide networking for the applications.
In conclusion, the proposed solution of deploying applications to an Azure Web App with container support does not meet all the requirements stated in the scenario. A better solution would be to use Azure Kubernetes Service (AKS) to orchestrate and manage containerized applications.