- name: Provision Monolith Application in Azure
hosts: localhost
tasks:
- name: Create Azure Resource Group
azure.rm.resourcegroup:
name: myMonolithResourceGroup
location: eastus
- name: Create Azure App Service Plan
azure.rm.appserviceplan:
resource_group: myMonolithResourceGroup
name: myMonolithAppServicePlan
sku: S1
location: eastus
- name: Create Azure Web App
azure.rm.webapp:
resource_group: myMonolithResourceGroup
name: myMonolithApp
app_service_plan: myMonolithAppServicePlan
- name: Provision Microservices Architecture in Azure
hosts: localhost
tasks:
- name: Create Azure Resource Group
azure.rm.resourcegroup:
name: myMicroservicesResourceGroup
location: eastus
- name: Create Azure Container Registry
azure.rm.containerregistry:
resource_group: myMicroservicesResourceGroup
name: myContainerRegistry
sku: Basic
- name: Deploy Microservices on Azure Kubernetes Service (AKS)
azure.rm.aks:
resource_group: myMicroservicesResourceGroup
name: myMicroservicesAKS
dns_prefix: myaks
agent_count: 3
agent_vm_size: Standard_DS2_v2
How do I avoid rehashing overhead with std::set in multithreaded code?
How do I find elements with custom comparators with std::set for embedded targets?
How do I erase elements while iterating with std::set for embedded targets?
How do I provide stable iteration order with std::unordered_map for large datasets?
How do I reserve capacity ahead of time with std::unordered_map for large datasets?
How do I erase elements while iterating with std::unordered_map in multithreaded code?
How do I provide stable iteration order with std::map for embedded targets?
How do I provide stable iteration order with std::map in multithreaded code?
How do I avoid rehashing overhead with std::map in performance-sensitive code?
How do I merge two containers efficiently with std::map for embedded targets?