Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion applications/go-api/azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.c038d7f8"
# For Azure CLI
AZURE_TENANT_ID: $(TERRAFORM_TENANT_ID)
AZURE_CLIENT_ID: $(TERRAFORM_SERVICE_PRINCIPAL_ID)
Expand Down
4 changes: 2 additions & 2 deletions base-infrastructure/terraform/resources/aks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ 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
max_count = var.environment == "staging" ? 7 : 7
max_count = var.environment == "staging" ? 3 : 7
temporary_name_for_rotation = "nodepooltemp"

upgrade_settings {
Expand Down
Loading