Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AKS 1.24 is deprecated, update to latest 1.25 patch #2792

Merged
merged 1 commit into from
Aug 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/consul/test/terraform/aks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ resource "azurerm_kubernetes_cluster" "default" {
location = azurerm_resource_group.default[count.index].location
resource_group_name = azurerm_resource_group.default[count.index].name
dns_prefix = "consul-k8s-${random_id.suffix[count.index].dec}"
kubernetes_version = "1.24.10"
kubernetes_version = var.kubernetes_version
role_based_access_control_enabled = true

// We're setting the network plugin and other network properties explicitly
Expand Down
5 changes: 5 additions & 0 deletions charts/consul/test/terraform/aks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ variable "location" {
description = "The location to launch this AKS cluster in."
}

variable "kubernetes_version" {
default = "1.25.17"
description = "Kubernetes version supported on AKS (1.25.17 Released August 2nd, 2023)"
}

variable "client_id" {
default = ""
description = "The client ID of the service principal to be used by Kubernetes when creating Azure resources like load balancers."
Expand Down
Loading