Skip to content

Commit

Permalink
chore: bump gke to 1.21.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bodymindarts committed Mar 15, 2022
1 parent e8df682 commit f1e4df8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/platform/gcp/kube.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ resource "google_container_cluster" "primary" {
resource "google_container_node_pool" "default" {
provider = google-beta

name = "${local.name_prefix}-${local.node_default_machine_type}-nodes"
name = "${local.name_prefix}-${local.node_default_machine_type}-default"
project = local.project
version = google_container_cluster.primary.master_version
location = google_container_cluster.primary.location
Expand Down Expand Up @@ -166,7 +166,7 @@ resource "google_container_node_pool" "default" {
}

shielded_instance_config {
enable_secure_boot = false
enable_secure_boot = true
enable_integrity_monitoring = true
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/platform/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ variable "network_prefix" {
default = "10.1"
}
variable "kube_version" {
default = "1.21.6-gke.1503"
default = "1.21.9-gke.1002"
}
variable "node_default_machine_type" {
default = "n2-standard-4"
Expand Down

0 comments on commit f1e4df8

Please sign in to comment.