Skip to content

Commit 3392cbb

Browse files
feat: GCP - Support K8s 1.32 (PSKD-1329)
Signed-off-by: PhanikumarThodupunoori <[email protected]>
1 parent f034f5b commit 3392cbb

8 files changed

+8
-8
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG GCP_CLI_VERSION=513.0.0
66

77
FROM hashicorp/terraform:$TERRAFORM_VERSION AS terraform
88
FROM google/cloud-sdk:$GCP_CLI_VERSION-alpine
9-
ARG KUBECTL_VERSION=1.30.10
9+
ARG KUBECTL_VERSION=1.31.7
1010
ARG ENABLE_GKE_GCLOUD_AUTH_PLUGIN=True
1111
ARG INSTALL_COMPONENTS=""
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Operational knowledge of
3232
- Terraform or Docker
3333
- #### Terraform
3434
- [Terraform](https://www.terraform.io/downloads.html) - v1.10.5
35-
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.30.10
35+
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.31.7
3636
- [jq](https://stedolan.github.io/jq/) - v1.7
3737
- [gcloud CLI](https://cloud.google.com/sdk/gcloud) - (optional - useful as an alternative to the Google Cloud Platform Portal) - v513.0.0
3838
- [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

config/sample-input-tf-enterprise.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ create_static_kubeconfig = true
3838
# tags = {} # e.g., { "key1" = "value1", "key2" = "value2" }
3939

4040
# GKE config
41-
kubernetes_version = "1.30"
41+
kubernetes_version = "1.31"
4242
default_nodepool_min_nodes = 1
4343
default_nodepool_vm_type = "n2-highmem-8"
4444

examples/sample-input-byo.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ postgres_servers = {
3737
}
3838

3939
# GKE config
40-
kubernetes_version = "1.30"
40+
kubernetes_version = "1.31"
4141
default_nodepool_min_nodes = 2
4242
default_nodepool_vm_type = "n2-highmem-8"
4343

examples/sample-input-connect.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ postgres_servers = {
2727
}
2828

2929
# GKE config
30-
kubernetes_version = "1.30"
30+
kubernetes_version = "1.31"
3131
default_nodepool_min_nodes = 2
3232
default_nodepool_vm_type = "n2-highmem-8"
3333

examples/sample-input-ha.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ postgres_servers = {
2727
}
2828

2929
# GKE config
30-
kubernetes_version = "1.30"
30+
kubernetes_version = "1.31"
3131
default_nodepool_min_nodes = 2
3232
default_nodepool_vm_type = "n2-highmem-8"
3333

examples/sample-input-minimal.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ tags = {} # e.g., { "key1" = "value1", "key2" = "value2" }
2727
# }
2828

2929
# GKE config
30-
kubernetes_version = "1.30"
30+
kubernetes_version = "1.31"
3131
default_nodepool_min_nodes = 1
3232
default_nodepool_vm_type = "n2-highmem-8"
3333

examples/sample-input.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ postgres_servers = {
2727
}
2828

2929
# GKE config
30-
kubernetes_version = "1.30"
30+
kubernetes_version = "1.31"
3131
default_nodepool_min_nodes = 2
3232
default_nodepool_vm_type = "n2-highmem-8"
3333

0 commit comments

Comments
 (0)