From 66284ef2c23e5bb19bdd7b107bd1dd55bcca10e5 Mon Sep 17 00:00:00 2001 From: Sebastian Florek Date: Thu, 7 Mar 2024 17:35:13 +0100 Subject: [PATCH] fix gcp configuration and bump console version --- .gitignore | 5 ++++- templates/setup/console.tf | 4 ++-- terraform/clouds/gcp/variables.tf | 8 ++++---- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 6c4cbb7..9b898cc 100644 --- a/.gitignore +++ b/.gitignore @@ -34,4 +34,7 @@ override.tf.json terraform.rc helm-values -test/helm-values \ No newline at end of file +test/helm-values + +# IDE +.idea/ diff --git a/templates/setup/console.tf b/templates/setup/console.tf index 2c2cea5..1e4422b 100644 --- a/templates/setup/console.tf +++ b/templates/setup/console.tf @@ -76,7 +76,7 @@ resource "helm_release" "console" { namespace = "plrl-console" chart = "console" repository = "https://pluralsh.github.io/console" - version = "0.1.28" + version = "0.1.38" create_namespace = true timeout = 600 wait = true @@ -85,4 +85,4 @@ resource "helm_release" "console" { ] depends_on = [ module.mgmt.cluster, helm_release.runtime, module.mgmt.db_url ] -} \ No newline at end of file +} diff --git a/terraform/clouds/gcp/variables.tf b/terraform/clouds/gcp/variables.tf index a0d9cf3..a1fc3e0 100644 --- a/terraform/clouds/gcp/variables.tf +++ b/terraform/clouds/gcp/variables.tf @@ -15,7 +15,7 @@ variable "deletion_protection" { variable "kubernetes_version" { type = string - default = "1.27.3-gke.100" + default = "1.27.10-gke.1055000" } variable "node_pools" { @@ -62,12 +62,12 @@ variable "subnetwork" { variable "subnet_cidr" { type = string - default = "10.0.0.0/17" + default = "10.0.16.0/20" } variable "pods_cidr" { type = string - default = "192.168.0.0/18" + default = "10.16.0.0/12" } variable "allocated_range_name" { @@ -82,7 +82,7 @@ variable "db_size" { variable "services_cidr" { type = string - default = "192.168.64.0/18" + default = "10.1.0.0/20" } variable "ip_range_pods_name" {