Skip to content

Commit 4dd5d5e

Browse files
committed
feat: (IAC-1377) Updated K8s default to 1.28 and added support for K8s 1.29
1 parent f12ea54 commit 4dd5d5e

13 files changed

+13
-13
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.57.0
33

44
FROM hashicorp/terraform:$TERRAFORM_VERSION as terraform
55
FROM mcr.microsoft.com/azure-cli:$AZURECLI_VERSION
6-
ARG KUBECTL_VERSION=1.27.9
6+
ARG KUBECTL_VERSION=1.28.5
77

88
WORKDIR /viya4-iac-azure
99

README.md

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

5959
#### Terraform Requirements:
6060
- [Terraform](https://www.terraform.io/downloads.html) - v1.7.3
61-
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.27.9
61+
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.28.5
6262
- [jq](https://stedolan.github.io/jq/) - v1.6
6363
- [Azure CLI](https://docs.microsoft.com/en-us/cli/azure) - (optional - useful as an alternative to the Azure Portal) - v2.57.0
6464

docs/CONFIG-VARS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Ubuntu 20.04 LTS is the operating system used on the Jump/NFS servers. Ubuntu cr
182182
| :--- | ---: | ---: | ---: | ---: |
183183
| 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. |
184184
| 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. |
185-
| kubernetes_version | The AKS cluster Kubernetes version | string | "1.27" |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 |
185+
| kubernetes_version | The AKS cluster Kubernetes version | string | "1.28" |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 |
186186
| create_jump_vm | Create bastion host | bool | true | |
187187
| create_jump_public_ip | Add public IP address to the jump VM | bool | true | |
188188
| 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.27"
48+
kubernetes_version = "1.28"
4949
default_nodepool_min_nodes = 2
5050
default_nodepool_vm_type = "Standard_D8s_v4"
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.27"
37+
kubernetes_version = "1.28"
3838
default_nodepool_min_nodes = 2
3939
default_nodepool_vm_type = "Standard_D8s_v4"
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.27"
35+
kubernetes_version = "1.28"
3636
default_nodepool_min_nodes = 2
3737
default_nodepool_vm_type = "Standard_D8s_v4"
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.27"
35+
kubernetes_version = "1.28"
3636
default_nodepool_min_nodes = 2
3737
default_nodepool_vm_type = "Standard_D4_v3"
3838
#v3 still has local temp storage

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.27"
89+
kubernetes_version = "1.28"
9090
default_nodepool_min_nodes = 2
9191
default_nodepool_vm_type = "Standard_D8s_v4"
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.27"
36+
kubernetes_version = "1.28"
3737
default_nodepool_min_nodes = 2
3838
default_nodepool_vm_type = "Standard_D8s_v4"
3939

examples/sample-input-singlestore.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.27"
37+
kubernetes_version = "1.28"
3838
default_nodepool_min_nodes = 2
3939
default_nodepool_vm_type = "Standard_D8s_v4"
4040

0 commit comments

Comments
 (0)