From 4a7083d94a6e199091f248f669516109fdbffb47 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Mon, 9 Sep 2019 22:24:10 -0700 Subject: [PATCH] Change Azure default controller_type and worker_type * Change default controller_type to Standard_B2s. A B2s is cheaper by $17/month and provides 2 vCPU, 4GB RAM (vs 1 vCPU, 3.5GB RAM) * Change default worker_type to Standard_DS1_v2. F1 was the previous generation. The DS1_v2 is newer, similar cost, more memory, and still supports Low Priority mode, if desired --- CHANGES.md | 7 +++++++ azure/container-linux/kubernetes/variables.tf | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 90551d08..61cab014 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,13 @@ Notable changes between versions. * Update etcd from v3.3.15 to [v3.4.0](https://github.com/etcd-io/etcd/releases/tag/v3.4.0) * Recommend updating `terraform-provider-ct` plugin from v0.3.2 to [v0.4.0](https://github.com/poseidon/terraform-provider-ct/releases/tag/v0.4.0) +#### Azure + +* Change default `controller_type` to `Standard_B2s` ([#539](https://github.com/poseidon/typhoon/pull/539)) + * `B2s` is cheaper by $17/month and provides 2 vCPU, 4GB RAM +* Change default `worker_type` to `Standard_DS1_v2` ([#539](https://github.com/poseidon/typhoon/pull/539)) + * `F1` is previous generation. `DS1_v2` is newer, similar cost, and supports Low Priority mode + #### Addons * Update Grafana from v6.3.3 to v6.3.5 diff --git a/azure/container-linux/kubernetes/variables.tf b/azure/container-linux/kubernetes/variables.tf index 5ff72471..74b2dde8 100644 --- a/azure/container-linux/kubernetes/variables.tf +++ b/azure/container-linux/kubernetes/variables.tf @@ -36,13 +36,13 @@ variable "worker_count" { variable "controller_type" { type = string - default = "Standard_DS1_v2" + default = "Standard_B2s" description = "Machine type for controllers (see `az vm list-skus --location centralus`)" } variable "worker_type" { type = string - default = "Standard_F1" + default = "Standard_DS1_v2" description = "Machine type for workers (see `az vm list-skus --location centralus`)" }