Understanding where to deploy
You will see workflow templates later, with which you don't have to start writing your workflow file from scratch. You can deploy to Azure, AWS, GCP, IBM Cloud, Alibaba Cloud, OpenShift, and more.
We will focus on Azure since we are using C# and .NET Core. Here are the most common services in Azure:
- Azure App Service
- Azure Functions
- Azure Static Web Apps
- Azure Kubernetes Service
Let's find out what these are and their use cases.
When to deploy to Azure App Service?
Consider using Azure App Service if you encounter the following:
- When you have a web app from any programming languages and frameworks, or ASP.NET Razor pages, ASP.NET MVC, or an ASP.NET Web API, or even server-side Blazor
- When you want to deploy a dedicated high-performance application or a scalable application
- When you want more control over an environment and configuration without getting a whole virtual machine or an entire operating...