From 06880e752c6aa0918f469537c23a4049199516ad Mon Sep 17 00:00:00 2001 From: Bizouard Paul Date: Wed, 20 Sep 2023 11:13:57 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20(ovh)=20Upgrade=20nodes=20from=20d2?= =?UTF-8?q?-4=20to=20d2-8=20due=20to=20too=20low=20memory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ovh/terraform.tfvars.example | 2 +- ovh/variables.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ovh/terraform.tfvars.example b/ovh/terraform.tfvars.example index 95e5ebd..d508a20 100644 --- a/ovh/terraform.tfvars.example +++ b/ovh/terraform.tfvars.example @@ -12,7 +12,7 @@ k8s_cluster_name = "my_cluster" k8s_cluster_region = "SBG5" k8s_cluster_version = "1.26" k8s_nodepool_name = "default-pool" -k8s_nodepool_flavor = "d2-4" +k8s_nodepool_flavor = "d2-8" k8s_nodepool_monthly_billed = false k8s_nodepool_min_nodes = "2" k8s_nodepool_max_nodes = "10" diff --git a/ovh/variables.tf b/ovh/variables.tf index 1977940..324f6e1 100644 --- a/ovh/variables.tf +++ b/ovh/variables.tf @@ -48,7 +48,7 @@ variable "k8s_nodepool_name" { variable "k8s_nodepool_flavor" { type = string description = "The flavor to use for the nodepool" - default = "d2-4" + default = "d2-8" } variable "k8s_nodepool_monthly_billed" { @@ -79,4 +79,4 @@ variable "k8s_nodepool_autoscale" { type = bool description = "Enable autoscaling feature (WIP)" default = false -} \ No newline at end of file +}