Skip to content

Commit c0d9232

Browse files
authored
Merge pull request #293 from sassoftware/pr-pscloud-75
feat: add support for kubernetes 1.33 (PSCLOUD-75)
2 parents 2f2aee7 + ab3e4af commit c0d9232

9 files changed

+9
-9
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.31.7
9+
ARG KUBECTL_VERSION=1.32.6
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
@@ -51,7 +51,7 @@ Operational knowledge of
5151
- Terraform or Docker
5252
- #### Terraform
5353
- [Terraform](https://www.terraform.io/downloads.html) - v1.10.5
54-
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.31.7
54+
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.32.6
5555
- [jq](https://stedolan.github.io/jq/) - v1.7
5656
- [gcloud CLI](https://cloud.google.com/sdk/gcloud) - (optional - useful as an alternative to the Google Cloud Platform Portal) - v513.0.0
5757
- [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.31"
41+
kubernetes_version = "1.32"
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.31"
40+
kubernetes_version = "1.32"
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.31"
30+
kubernetes_version = "1.32"
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.31"
30+
kubernetes_version = "1.32"
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.31"
30+
kubernetes_version = "1.32"
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
@@ -28,7 +28,7 @@ postgres_servers = {
2828
},
2929

3030
# GKE config
31-
kubernetes_version = "1.31"
31+
kubernetes_version = "1.32"
3232
default_nodepool_min_nodes = 2
3333
default_nodepool_vm_type = "n2-highmem-8"
3434

test/helpers/plan_cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func GetDefaultPlanVars(t *testing.T) map[string]interface{} {
142142
variables["default_public_access_cidrs"] = []string{"123.45.67.89/16"}
143143
variables["project"] = credsFileContents["project_id"]
144144
variables["service_account_keyfile"] = "/.viya4-tf-gcp-service-account.json"
145-
variables["kubernetes_version"] = "1.31"
145+
variables["kubernetes_version"] = "1.32"
146146

147147
return variables
148148
}

0 commit comments

Comments
 (0)