From b26eebb9eede34e2dbccfeff87b97e91dad610fb Mon Sep 17 00:00:00 2001 From: jarpat Date: Tue, 19 Dec 2023 10:54:59 -0500 Subject: [PATCH] bump default K8s version to 1.27 --- Dockerfile | 2 +- README.md | 2 +- config/sample-input-tf-enterprise.tfvars | 2 +- examples/sample-input-byo.tfvars | 2 +- examples/sample-input-connect.tfvars | 2 +- examples/sample-input-ha.tfvars | 2 +- examples/sample-input-minimal.tfvars | 2 +- examples/sample-input.tfvars | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 884d356..aad9742 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG GCP_CLI_VERSION=440.0.0 FROM hashicorp/terraform:$TERRAFORM_VERSION as terraform FROM google/cloud-sdk:$GCP_CLI_VERSION-alpine -ARG KUBECTL_VERSION=1.26.7 +ARG KUBECTL_VERSION=1.27.8 ARG ENABLE_GKE_GCLOUD_AUTH_PLUGIN=True ARG INSTALL_COMPONENTS="" diff --git a/README.md b/README.md index cbf84ad..e31299b 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Operational knowledge of - Terraform or Docker - #### Terraform - [Terraform](https://www.terraform.io/downloads.html) - v1.4.5 - - [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.26.7 + - [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.27.8 - [jq](https://stedolan.github.io/jq/) - v1.6 - [gcloud CLI](https://cloud.google.com/sdk/gcloud) - (optional - useful as an alternative to the Google Cloud Platform Portal) - v440.0.0 - [gke-gcloud-auth-plugin](https://cloud.google.com/kubernetes-engine/docs/how-to/cluster-access-for-kubectl#install_plugin) - (optional - only for provider based Kubernetes configuration files) - >= v1.26 diff --git a/config/sample-input-tf-enterprise.tfvars b/config/sample-input-tf-enterprise.tfvars index 89dea66..c5bb620 100644 --- a/config/sample-input-tf-enterprise.tfvars +++ b/config/sample-input-tf-enterprise.tfvars @@ -38,7 +38,7 @@ create_static_kubeconfig = true # tags = {} # e.g., { "key1" = "value1", "key2" = "value2" } # GKE config -kubernetes_version = "1.26" +kubernetes_version = "1.27" default_nodepool_min_nodes = 1 default_nodepool_vm_type = "n2-standard-2" diff --git a/examples/sample-input-byo.tfvars b/examples/sample-input-byo.tfvars index 74d5fe0..aadcd2e 100644 --- a/examples/sample-input-byo.tfvars +++ b/examples/sample-input-byo.tfvars @@ -37,7 +37,7 @@ postgres_servers = { } # GKE config -kubernetes_version = "1.26" +kubernetes_version = "1.27" default_nodepool_min_nodes = 2 default_nodepool_vm_type = "e2-standard-8" diff --git a/examples/sample-input-connect.tfvars b/examples/sample-input-connect.tfvars index 7d0c096..b70ff6f 100644 --- a/examples/sample-input-connect.tfvars +++ b/examples/sample-input-connect.tfvars @@ -27,7 +27,7 @@ postgres_servers = { } # GKE config -kubernetes_version = "1.26" +kubernetes_version = "1.27" default_nodepool_min_nodes = 2 default_nodepool_vm_type = "e2-standard-8" diff --git a/examples/sample-input-ha.tfvars b/examples/sample-input-ha.tfvars index 16ef901..a62219b 100644 --- a/examples/sample-input-ha.tfvars +++ b/examples/sample-input-ha.tfvars @@ -27,7 +27,7 @@ postgres_servers = { } # GKE config -kubernetes_version = "1.26" +kubernetes_version = "1.27" default_nodepool_min_nodes = 2 default_nodepool_vm_type = "e2-standard-8" diff --git a/examples/sample-input-minimal.tfvars b/examples/sample-input-minimal.tfvars index 52685df..2a1318d 100644 --- a/examples/sample-input-minimal.tfvars +++ b/examples/sample-input-minimal.tfvars @@ -27,7 +27,7 @@ tags = {} # e.g., { "key1" = "value1", "key2" = "value2" } # } # GKE config -kubernetes_version = "1.26" +kubernetes_version = "1.27" default_nodepool_min_nodes = 1 default_nodepool_vm_type = "n2-standard-2" diff --git a/examples/sample-input.tfvars b/examples/sample-input.tfvars index f9c7a49..3a080c6 100644 --- a/examples/sample-input.tfvars +++ b/examples/sample-input.tfvars @@ -27,7 +27,7 @@ postgres_servers = { } # GKE config -kubernetes_version = "1.26" +kubernetes_version = "1.27" default_nodepool_min_nodes = 2 default_nodepool_vm_type = "e2-standard-8"