Azure Kubernetes Service
Building and containerizing sample application
Summary
In this lesson, you’ve successfully:
- Scaffolded and built a C# ASP.NET Core web application
- Wrote a Dockerfile to containerize the app
- Ran and tested the image locally on Docker
You’re now ready to take the next step: deploy your container image to Azure Kubernetes Service (AKS) for a production-grade, highly available environment.
Next Steps
Before deploying to AKS, ensure you have the Azure CLI installed and are logged into your Azure subscription:
az login
az account set --subscription "<your-subscription-id>"
Environment Comparison
Environment | Deployment Tool | Use Case |
---|---|---|
Local Docker | docker build / docker run | Development and testing |
Azure Kubernetes Service (AKS) | az aks / kubectl | Production-grade scalability |
Links and References
- Docker Documentation
- Azure Kubernetes Service (AKS) Overview
- ASP.NET Core Documentation
- Azure CLI Reference
Watch Video
Watch video content