Skip to content

Commit df2dc6a

Browse files
Abhishek KumarAbhishek Kumar
authored andcommitted
Merge branch 'main' of https://github.com/sassoftware/viya4-iac-azure into pscloud-382
2 parents c3bf3bf + c3951c2 commit df2dc6a

18 files changed

+19
-17
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.32.6
6+
ARG KUBECTL_VERSION=1.33.6
77

88
WORKDIR /viya4-iac-azure
99

README.md

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

8484
#### Terraform Requirements:
8585
- [Terraform](https://www.terraform.io/downloads.html) - v1.10.5
86-
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.32.6
86+
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.33.6
8787
- [jq](https://stedolan.github.io/jq/) - v1.6
8888
- [Azure CLI](https://docs.microsoft.com/en-us/cli/azure) - (optional - useful as an alternative to the Azure Portal) - v2.70.0
8989

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.32.6"]
39+
expectedOutput: ["Client Version: v1.33.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
@@ -201,7 +201,7 @@ Ubuntu 22.04 LTS is the operating system used on the Jump/NFS servers. Ubuntu cr
201201
| :--- | ---: | ---: | ---: | ---: |
202202
| 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. |
203203
| 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. |
204-
| 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 |
204+
| kubernetes_version | The AKS cluster Kubernetes version | string | "1.33" | 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 |
205205
| create_jump_vm | Create bastion host | bool | true | |
206206
| create_jump_public_ip | Add public IP address to the jump VM | bool | true | |
207207
| 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.32"
48+
kubernetes_version = "1.33"
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.32"
37+
kubernetes_version = "1.33"
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.32"
35+
kubernetes_version = "1.33"
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.32"
35+
kubernetes_version = "1.33"
3636
default_nodepool_min_nodes = 2
3737
default_nodepool_vm_type = "Standard_D4_v5"
3838

examples/sample-input-multizone.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ container_registry_sku = "Standard"
5959
container_registry_admin_enabled = false
6060

6161
# AKS config
62-
kubernetes_version = "1.32"
62+
kubernetes_version = "1.33"
6363
default_nodepool_min_nodes = 2
6464
default_nodepool_vm_type = "Standard_E8s_v5"
6565

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.32"
89+
kubernetes_version = "1.33"
9090
default_nodepool_min_nodes = 2
9191
default_nodepool_vm_type = "Standard_E8s_v5"
9292

0 commit comments

Comments
 (0)