Skip to content

Commit

Permalink
fix gcp configuration and bump console version
Browse files Browse the repository at this point in the history
  • Loading branch information
floreks committed Mar 7, 2024
1 parent 6654644 commit 66284ef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,7 @@ override.tf.json
terraform.rc

helm-values
test/helm-values
test/helm-values

# IDE
.idea/
4 changes: 2 additions & 2 deletions templates/setup/console.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -85,4 +85,4 @@ resource "helm_release" "console" {
]

depends_on = [ module.mgmt.cluster, helm_release.runtime, module.mgmt.db_url ]
}
}
8 changes: 4 additions & 4 deletions terraform/clouds/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down Expand Up @@ -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" {
Expand All @@ -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" {
Expand Down

0 comments on commit 66284ef

Please sign in to comment.