Skip to content

Commit 9167755

Browse files
Merge pull request #532 from sassoftware/pr-pscloud-74
feat: add support for kubernetes 1.33 (PSCLOUD-74)
2 parents 114b705 + ca65c94 commit 9167755

15 files changed

+15
-15
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG AZURECLI_VERSION=2.70.0
33

44
FROM hashicorp/terraform:$TERRAFORM_VERSION AS terraform
55
FROM mcr.microsoft.com/azure-cli:$AZURECLI_VERSION
6-
ARG KUBECTL_VERSION=1.31.6
6+
ARG KUBECTL_VERSION=1.32.6
77

88
WORKDIR /viya4-iac-azure
99

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Access to an **Azure Subscription** and an [**Identity**](./docs/user/TerraformA
7777

7878
#### Terraform Requirements:
7979
- [Terraform](https://www.terraform.io/downloads.html) - v1.10.5
80-
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.31.6
80+
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.32.6
8181
- [jq](https://stedolan.github.io/jq/) - v1.6
8282
- [Azure CLI](https://docs.microsoft.com/en-us/cli/azure) - (optional - useful as an alternative to the Azure Portal) - v2.70.0
8383

container-structure-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ commandTests:
3636
- name: "kubectl version"
3737
command: "kubectl"
3838
args: ["version", "--client"]
39-
expectedOutput: ["Client Version: v1.31.6"]
39+
expectedOutput: ["Client Version: v1.32.6"]
4040

4141
metadataTest:
4242
workdir: "/viya4-iac-azure"

docs/CONFIG-VARS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Ubuntu 22.04 LTS is the operating system used on the Jump/NFS servers. Ubuntu cr
200200
| :--- | ---: | ---: | ---: | ---: |
201201
| partner_id | A GUID that is registered with Microsoft to facilitate partner resource usage attribution | string | "5d27f3ae-e49c-4dea-9aa3-b44e4750cd8c" | Defaults to SAS partner GUID. When you deploy this Terraform configuration, Microsoft can identify the installation of SAS software with the deployed Azure resources. Microsoft can then correlate the resources that are used to support the software. Microsoft collects this information to provide the best experiences with their products and to operate their business. The data is collected and governed by Microsoft's privacy policies, located at https://www.microsoft.com/trustcenter. |
202202
| create_static_kubeconfig | Allows the user to create a provider / service account-based kubeconfig file | bool | true | A value of `false` will default to using the cloud provider's mechanism for generating the kubeconfig file. A value of `true` will create a static kubeconfig that uses a `Service Account` and `Cluster Role Binding` to provide credentials. |
203-
| kubernetes_version | The AKS cluster Kubernetes version | string | "1.31" | Use of specific versions is still supported. If you need exact kubernetes version please use format `x.y.z`, where `x` is the major version, `y` is the minor version, and `z` is the patch version |
203+
| kubernetes_version | The AKS cluster Kubernetes version | string | "1.32" | Use of specific versions is still supported. If you need exact kubernetes version please use format `x.y.z`, where `x` is the major version, `y` is the minor version, and `z` is the patch version |
204204
| create_jump_vm | Create bastion host | bool | true | |
205205
| create_jump_public_ip | Add public IP address to the jump VM | bool | true | |
206206
| enable_jump_public_static_ip | Enables `Static` allocation method for the public IP address of Jump Server. Setting false will enable `Dynamic` allocation method. | bool | true | Only used with `create_jump_public_ip=true` |

examples/sample-input-byo.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ container_registry_sku = "Standard"
4545
container_registry_admin_enabled = false
4646

4747
# AKS config
48-
kubernetes_version = "1.31"
48+
kubernetes_version = "1.32"
4949
default_nodepool_min_nodes = 2
5050
default_nodepool_vm_type = "Standard_E8s_v5"
5151

examples/sample-input-connect.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ container_registry_sku = "Standard"
3434
container_registry_admin_enabled = false
3535

3636
# AKS config
37-
kubernetes_version = "1.31"
37+
kubernetes_version = "1.32"
3838
default_nodepool_min_nodes = 2
3939
default_nodepool_vm_type = "Standard_E8s_v5"
4040

examples/sample-input-ha.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ container_registry_sku = "Standard"
3232
container_registry_admin_enabled = false
3333

3434
# AKS config
35-
kubernetes_version = "1.31"
35+
kubernetes_version = "1.32"
3636
default_nodepool_min_nodes = 2
3737
default_nodepool_vm_type = "Standard_E8s_v5"
3838

examples/sample-input-minimal.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ container_registry_sku = "Standard"
3232
container_registry_admin_enabled = false
3333

3434
# AKS config
35-
kubernetes_version = "1.31"
35+
kubernetes_version = "1.32"
3636
default_nodepool_min_nodes = 2
3737
default_nodepool_vm_type = "Standard_D4_v5"
3838

examples/sample-input-postgres.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ container_registry_sku = "Standard"
8686
container_registry_admin_enabled = false
8787

8888
# AKS config
89-
kubernetes_version = "1.31"
89+
kubernetes_version = "1.32"
9090
default_nodepool_min_nodes = 2
9191
default_nodepool_vm_type = "Standard_E8s_v5"
9292

examples/sample-input-ppg.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ container_registry_sku = "Standard"
3333
container_registry_admin_enabled = false
3434

3535
# AKS config
36-
kubernetes_version = "1.31"
36+
kubernetes_version = "1.32"
3737
default_nodepool_min_nodes = 2
3838
default_nodepool_vm_type = "Standard_E8s_v5"
3939

0 commit comments

Comments
 (0)