From 416bee1d54cbaa7f718ab741af8c2886585cf5b5 Mon Sep 17 00:00:00 2001 From: Ranjan Shrestha Date: Fri, 15 May 2026 15:15:24 +0545 Subject: [PATCH 1/5] chore(monty-prod): update the target revision id --- applications/argocd/production/applications/montandon-etl.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/argocd/production/applications/montandon-etl.yaml b/applications/argocd/production/applications/montandon-etl.yaml index 6430e207..eb662104 100644 --- a/applications/argocd/production/applications/montandon-etl.yaml +++ b/applications/argocd/production/applications/montandon-etl.yaml @@ -10,7 +10,7 @@ spec: source: repoURL: ghcr.io/ifrcgo/montandon-etl chart: montandon-etl-helm - targetRevision: 0.1.1-develop.c2cb07b5 + targetRevision: 0.1.1-develop.c6572419 helm: valueFiles: - values/operators.yaml From b2213845a749529948f0c862f7bcb81e49d272fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=2C=20Zolt=C3=A1n?= Date: Mon, 18 May 2026 18:01:32 +0200 Subject: [PATCH 2/5] Fix public-per-process-status n+1 query --- applications/go-api/azure-pipelines.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/go-api/azure-pipelines.yaml b/applications/go-api/azure-pipelines.yaml index a7791682..f699f591 100644 --- a/applications/go-api/azure-pipelines.yaml +++ b/applications/go-api/azure-pipelines.yaml @@ -32,7 +32,7 @@ jobs: displayName: "Deploy staging instance of go-api" env: ENVIRONMENT: staging - VERSION: "0.0.2-develop.c4721825" + VERSION: "0.0.2-develop.cb28615a" # For Azure CLI AZURE_TENANT_ID: $(TERRAFORM_TENANT_ID) AZURE_CLIENT_ID: $(TERRAFORM_SERVICE_PRINCIPAL_ID) From 026d8af9d2060c694cadc85d28e113f7fb84ed2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=2C=20Zolt=C3=A1n?= Date: Wed, 20 May 2026 16:36:31 +0200 Subject: [PATCH 3/5] Molnix appraisals --- applications/go-api/azure-pipelines.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/go-api/azure-pipelines.yaml b/applications/go-api/azure-pipelines.yaml index f699f591..7835a52c 100644 --- a/applications/go-api/azure-pipelines.yaml +++ b/applications/go-api/azure-pipelines.yaml @@ -32,7 +32,7 @@ jobs: displayName: "Deploy staging instance of go-api" env: ENVIRONMENT: staging - VERSION: "0.0.2-develop.cb28615a" + VERSION: "0.0.2-develop.c038d7f8" # For Azure CLI AZURE_TENANT_ID: $(TERRAFORM_TENANT_ID) AZURE_CLIENT_ID: $(TERRAFORM_SERVICE_PRINCIPAL_ID) From 18773d5749220c1281c1fcb7bec60bf6e2b752c6 Mon Sep 17 00:00:00 2001 From: Szabo Zoltan Date: Thu, 21 May 2026 10:38:55 +0200 Subject: [PATCH 4/5] Increase AKS default node pool size to D8s v5 --- base-infrastructure/terraform/resources/aks.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-infrastructure/terraform/resources/aks.tf b/base-infrastructure/terraform/resources/aks.tf index ae8440d4..059294bc 100644 --- a/base-infrastructure/terraform/resources/aks.tf +++ b/base-infrastructure/terraform/resources/aks.tf @@ -16,7 +16,7 @@ resource "azurerm_kubernetes_cluster" "ifrcgo" { default_node_pool { name = "nodepool1" - vm_size = "Standard_DS3_v2" + vm_size = "Standard_D8s_v5" vnet_subnet_id = azurerm_subnet.aks.id enable_auto_scaling = true min_count = 1 From 937ac706f33776eeb1f55ac23f2213e6f50bc990 Mon Sep 17 00:00:00 2001 From: Szabo Zoltan Date: Thu, 21 May 2026 15:43:06 +0200 Subject: [PATCH 5/5] 3 big nodes are enough for Staging, instead of 7 --- base-infrastructure/terraform/resources/aks.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-infrastructure/terraform/resources/aks.tf b/base-infrastructure/terraform/resources/aks.tf index 059294bc..583dd03f 100644 --- a/base-infrastructure/terraform/resources/aks.tf +++ b/base-infrastructure/terraform/resources/aks.tf @@ -20,7 +20,7 @@ resource "azurerm_kubernetes_cluster" "ifrcgo" { vnet_subnet_id = azurerm_subnet.aks.id enable_auto_scaling = true min_count = 1 - max_count = var.environment == "staging" ? 7 : 7 + max_count = var.environment == "staging" ? 3 : 7 temporary_name_for_rotation = "nodepooltemp" upgrade_settings {