Skip to content

Commit

Permalink
bump k8s version for example since 1.26 has been deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
lonegunmanb committed May 7, 2024
1 parent c9174e5 commit 63e6d7e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/application_gateway_ingress/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ module "aks" {

prefix = random_id.name.hex
resource_group_name = local.resource_group.name
kubernetes_version = "1.26" # don't specify the patch version!
kubernetes_version = "1.29" # don't specify the patch version!
automatic_channel_upgrade = "patch"
agents_availability_zones = ["1", "2"]
agents_count = null
Expand Down
2 changes: 1 addition & 1 deletion examples/startup/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module "aks" {

prefix = random_id.name.hex
resource_group_name = local.resource_group.name
kubernetes_version = "1.26" # don't specify the patch version!
kubernetes_version = "1.29" # don't specify the patch version!
automatic_channel_upgrade = "patch"
agents_availability_zones = ["1", "2"]
agents_count = null
Expand Down
2 changes: 1 addition & 1 deletion examples/with_acr/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ module "aks" {

prefix = "prefix-${random_id.prefix.hex}"
resource_group_name = local.resource_group.name
kubernetes_version = "1.26" # don't specify the patch version!
kubernetes_version = "1.29" # don't specify the patch version!
automatic_channel_upgrade = "patch"
attached_acr_id_map = {
example = azurerm_container_registry.example.id
Expand Down

0 comments on commit 63e6d7e

Please sign in to comment.