Skip to content

Commit 254b4f3

Browse files
authored
feat: (IAC-583): AKS add support for K8s 1.24 (#254)
* feat: (IAC-583) Default kubernetes version updated to 1.23.8 * feat: (IAC-583): Support kubernetes 1.24 version * feat: (IAC-583): Updated the resource kubernetes_secret * feat: (IAC-583): Removed data source for the secret, code will use the new resource kubernetes_secret * feat: (IAC-583): Listing the data element before the resources * feat: (IAC-583): Unifying changes with other providers
1 parent 6c7450d commit 254b4f3

14 files changed

+37
-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.24.2
33

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

88
WORKDIR /viya4-iac-azure
99

README.md

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

4545
#### Terraform Requirements:
4646
- [Terraform](https://www.terraform.io/downloads.html) - v1.0.0
47-
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.22.10
47+
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl) - v1.23.8
4848
- [jq](https://stedolan.github.io/jq/) - v1.6
4949
- [Azure CLI](https://docs.microsoft.com/en-us/cli/azure) - (optional - useful as an alternative to the Azure Portal) - v2.24.2
5050

docs/CONFIG-VARS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Ubuntu 20.04 LTS is the operating system used on the Jump/NFS servers. Ubuntu cr
163163
| :--- | ---: | ---: | ---: | ---: |
164164
| 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. |
165165
| 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. |
166-
| kubernetes_version | The AKS cluster Kubernetes version | string | "1.22.6" | |
166+
| kubernetes_version | The AKS cluster Kubernetes version | string | "1.23.8" | |
167167
| create_jump_vm | Create bastion host | bool | true | |
168168
| create_jump_public_ip | Add public IP address to the jump VM | bool | true | |
169169
| jump_vm_admin | Operating system Admin User for the jump VM | string | "jumpuser" | |

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.22.6"
48+
kubernetes_version = "1.23.8"
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.22.6"
37+
kubernetes_version = "1.23.8"
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.22.6"
35+
kubernetes_version = "1.23.8"
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.22.6"
35+
kubernetes_version = "1.23.8"
3636
default_nodepool_min_nodes = 1
3737
#v3 still has local temp storage
3838
default_nodepool_vm_type = "Standard_D2_v3"

examples/sample-input-ppg.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.22.6"
35+
kubernetes_version = "1.23.8"
3636
default_nodepool_min_nodes = 2
3737
default_nodepool_vm_type = "Standard_D8s_v4"
3838

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.22.6"
37+
kubernetes_version = "1.23.8"
3838
default_nodepool_min_nodes = 2
3939
default_nodepool_vm_type = "Standard_D8s_v4"
4040

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

0 commit comments

Comments
 (0)