Skip to content

Commit 21d3ef6

Browse files
Merge pull request #187 from IFRCGo/develop
Increase Prod AKS default node pool size to D8s v5
2 parents 79090bd + 937ac70 commit 21d3ef6

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

applications/argocd/production/applications/montandon-etl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
source:
1111
repoURL: ghcr.io/ifrcgo/montandon-etl
1212
chart: montandon-etl-helm
13-
targetRevision: 0.1.1-develop.c2cb07b5
13+
targetRevision: 0.1.1-develop.c6572419
1414
helm:
1515
valueFiles:
1616
- values/operators.yaml

applications/go-api/azure-pipelines.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
displayName: "Deploy staging instance of go-api"
3333
env:
3434
ENVIRONMENT: staging
35-
VERSION: "0.0.2-develop.c4721825"
35+
VERSION: "0.0.2-develop.c038d7f8"
3636
# For Azure CLI
3737
AZURE_TENANT_ID: $(TERRAFORM_TENANT_ID)
3838
AZURE_CLIENT_ID: $(TERRAFORM_SERVICE_PRINCIPAL_ID)

base-infrastructure/terraform/resources/aks.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ resource "azurerm_kubernetes_cluster" "ifrcgo" {
1616

1717
default_node_pool {
1818
name = "nodepool1"
19-
vm_size = "Standard_DS3_v2"
19+
vm_size = "Standard_D8s_v5"
2020
vnet_subnet_id = azurerm_subnet.aks.id
2121
enable_auto_scaling = true
2222
min_count = 1
23-
max_count = var.environment == "staging" ? 7 : 7
23+
max_count = var.environment == "staging" ? 3 : 7
2424
temporary_name_for_rotation = "nodepooltemp"
2525

2626
upgrade_settings {

0 commit comments

Comments
 (0)