Skip to content

Commit 70b69f3

Browse files
committed
chore: update AKS node pool VM size from Standard_D2s_v4 to Standard_D2s_v6 in configurations
1 parent 1480ab2 commit 70b69f3

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/azd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The following environment variables control what gets deployed:
102102
| Variable | Description |
103103
| --------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
104104
| `AZURE_LOCATION` | The Azure region for the deployment. |
105-
| `AKS_NODE_POOL_VM_SIZE` | AKS node VM size. Default: `Standard_D2s_v4`. |
105+
| `AKS_NODE_POOL_VM_SIZE` | AKS node VM size. Default: `Standard_D2s_v6`. |
106106
| `DEPLOY_AZURE_CONTAINER_REGISTRY` | Set `true` to provision Azure Container Registry (ACR). When enabled, images are either imported from GHCR or built to ACR and the deployment uses that registry. |
107107
| `BUILD_CONTAINERS` | With ACR enabled (above), set `true` to build images from `src/*` using `az acr build`. If `false`/unset, images are imported from GHCR into ACR. |
108108
| `DEPLOY_AZURE_OPENAI` | Set `true` to deploy Azure OpenAI and enable `ai-service` with workload identity. |
@@ -121,7 +121,7 @@ These environment variables listed above can be set with commands like this:
121121
azd env set AZURE_LOCATION swedencentral
122122

123123
# set the SKU of the virtual machine scale set nodes in the AKS cluster
124-
azd env set AKS_NODE_POOL_VM_SIZE Standard_D2s_v4
124+
azd env set AKS_NODE_POOL_VM_SIZE Standard_D2s_v6
125125

126126
# deploys azure container registry and imports containers from github container registry
127127
azd env set DEPLOY_AZURE_CONTAINER_REGISTRY true

infra/bicep/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ param location string
1313
param appEnvironment string
1414

1515
@description('value of azure kubernetes node pool vm size')
16-
param aksNodePoolVMSize string = 'Standard_D2s_v4'
16+
param aksNodePoolVMSize string = 'Standard_D2s_v6'
1717

1818
@description('value of the kubernetes namespace')
1919
param k8sNamespace string = 'pets'

infra/terraform/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ data "http" "current_ip" {
6767

6868
locals {
6969
name = "${var.environment}${random_pet.example.id}${random_integer.example.result}"
70-
aks_node_pool_vm_size = var.aks_node_pool_vm_size != "" ? var.aks_node_pool_vm_size : "Standard_D2s_v4"
70+
aks_node_pool_vm_size = var.aks_node_pool_vm_size != "" ? var.aks_node_pool_vm_size : "Standard_D2s_v6"
7171
deploy_azure_cosmosdb = var.deploy_azure_cosmosdb == "true" ? true : false
7272
default_cosmosdb_account_kind = "GlobalDocumentDB"
7373
cosmosdb_account_kind = var.cosmosdb_account_kind != "" ? var.cosmosdb_account_kind : local.default_cosmosdb_account_kind

infra/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ variable "environment" {
1111
variable "aks_node_pool_vm_size" {
1212
description = "value of azure kubernetes node pool vm size"
1313
type = string
14-
default = "Standard_D2s_v4"
14+
default = "Standard_D2s_v6"
1515
}
1616

1717
variable "k8s_namespace" {

0 commit comments

Comments
 (0)