Azure Administrator Associate (AZ-104)
1 Manage Azure identities and governance
1-1 Manage Azure AD objects
1-2 Manage role-based access control (RBAC)
1-3 Manage subscriptions and governance
2 Implement and manage storage
2-1 Manage storage accounts
2-2 Manage blob storage
2-3 Manage disk storage
2-4 Manage file shares
2-5 Implement Azure Backup
3 Deploy and manage Azure compute resources
3-1 Manage virtual machines (VMs)
3-2 Manage VM extensions
3-3 Manage virtual machine scale sets (VMSS)
3-4 Manage Azure App Services
3-5 Manage Azure Container Instances (ACI)
3-6 Manage Azure Kubernetes Service (AKS)
4 Configure and manage virtual networking
4-1 Manage Azure virtual networks
4-2 Manage network security groups (NSGs)
4-3 Manage Azure DNS
4-4 Manage Azure load balancers
4-5 Manage Azure Application Gateway
4-6 Manage Azure VPN Gateway
4-7 Manage Azure ExpressRoute
4-8 Manage Azure Traffic Manager
4-9 Manage Azure Content Delivery Network (CDN)
5 Monitor and back up Azure resources
5-1 Monitor resources using Azure Monitor
5-2 Implement and manage Azure Backup
5-3 Implement and manage Azure Site Recovery
5-4 Implement and manage Azure Security Center
5-5 Implement and manage Azure Update Management
Deploy and Manage Azure Compute Resources

Deploy and Manage Azure Compute Resources

Key Concepts

To effectively deploy and manage compute resources in Azure, it's essential to understand the following key concepts:

Virtual Machines (VMs)

Azure Virtual Machines (VMs) allow you to create and manage virtualized computing environments in the cloud. VMs are fully configurable and can run various operating systems, including Windows and Linux. They are ideal for workloads that require full control over the operating system and hardware configuration.

Example: You can deploy a VM to host a web server, database server, or any other application that requires a dedicated computing environment.

Virtual Machine Scale Sets (VMSS)

Virtual Machine Scale Sets (VMSS) enable you to create and manage a group of identical, load-balanced VMs. VMSS automatically scales the number of VM instances based on demand, ensuring your application can handle varying workloads efficiently. This feature is particularly useful for large-scale applications and services.

Analogy: Think of VMSS as an automated assembly line that produces more machines (VMs) when demand increases and reduces them when demand decreases, ensuring optimal resource utilization.

Azure App Service

Azure App Service is a fully managed platform for building, deploying, and scaling web applications. It supports various programming languages and frameworks and offers built-in auto-scaling, load balancing, and continuous deployment capabilities. App Service is ideal for web applications, mobile backends, and RESTful APIs.

Example: You can deploy a web application written in .NET, Java, or Node.js to Azure App Service, which will automatically handle scaling and load balancing based on traffic.

Azure Kubernetes Service (AKS)

Azure Kubernetes Service (AKS) is a managed Kubernetes service that simplifies the deployment, management, and operations of Kubernetes clusters. AKS provides a scalable and highly available environment for containerized applications, making it easier to manage complex, microservices-based architectures.

Analogy: AKS is like a smart traffic controller for containers, orchestrating their deployment, scaling, and management across a cluster of machines.

Azure Functions

Azure Functions is a serverless compute service that allows you to run code on-demand without managing infrastructure. Functions execute in response to events, such as HTTP requests, timers, or messages from Azure services. This event-driven model is ideal for building lightweight, scalable applications and microservices.

Example: You can create an Azure Function that processes images uploaded to Azure Blob Storage, resizing and optimizing them automatically.

Conclusion

Understanding and effectively deploying and managing Azure compute resources is crucial for building scalable, reliable, and efficient applications. By leveraging Virtual Machines, Virtual Machine Scale Sets, Azure App Service, Azure Kubernetes Service, and Azure Functions, you can choose the right compute solution for your specific needs and ensure optimal performance and cost-efficiency.