Merge branch 'Azure:master' into master#5702
Conversation
There was a problem hiding this comment.
Pull request overview
This PR introduces a new AKS blog post announcing expanded AKS Long Term Support (LTS) coverage and guidance on adopting LTS.
Changes:
- Adds a new blog post: “AKS Long Term Support: 24-Month Support Now Available for Every Kubernetes Version”.
- Includes an Azure CLI example and links to supporting AKS LTS documentation.
| title: "AKS Long Term Support: 24-Month Support Now Available for Every Kubernetes Version" | ||
| description: "Every supported AKS Kubernetes version is now eligible for 24-month LTS support when you enable the Premium tier" | ||
| date: 2025-07-20 | ||
| author: Kaarthis |
There was a problem hiding this comment.
The front matter author: Kaarthis doesn't match any key in blog/_data/authors.yml. Because the author include looks up site.data.authors[author_name] and then renders author.name, a missing key can result in a blank/incorrect author profile. Update author to an existing author key (for example, "Kaarthikeyan Subramanian") or add a matching entry to blog/_data/authors.yml.
| author: Kaarthis | |
| author: Kaarthikeyan Subramanian |
| az aks create \ | ||
| --resource-group myResourceGroup \ | ||
| --name myAKSLTSCluster \ | ||
| --tier LTS \ | ||
| --kubernetes-version 1.29 \ | ||
| --node-count 3 | ||
| ``` | ||
|
|
||
| You can also deploy AKS clusters with LTS support using: | ||
| - **Azure Portal:** Select "Long Term Support" option during cluster creation | ||
| - **ARM Templates/Bicep:** Specify the LTS tier in your infrastructure-as-code deployments | ||
| - **Terraform:** Updated AKS provider supports LTS cluster configuration | ||
|
|
||
| **Important:** AKS LTS is available as part of the **Premium tier**. For detailed pricing information, please refer to the [AKS Premium tier pricing](https://azure.microsoft.com/pricing/details/kubernetes-service/). |
There was a problem hiding this comment.
The "Getting Started" section is internally inconsistent about how LTS is enabled: the CLI example uses --tier LTS and the bullets refer to an "LTS tier", but a few lines later the post says LTS is available as part of the Premium tier. Please align the terminology and the example command with the actual AKS knobs (Premium tier vs LTS support plan/version selection) so readers don't run an invalid az aks create command.
| --- | ||
| title: "AKS Long Term Support: 24-Month Support Now Available for Every Kubernetes Version" | ||
| description: "Every supported AKS Kubernetes version is now eligible for 24-month LTS support when you enable the Premium tier" | ||
| date: 2025-07-20 | ||
| author: Kaarthis | ||
| categories: general | ||
| --- |
There was a problem hiding this comment.
The PR description mentions a "1.35 rollout notice and 1.32 deprecation notice", but the only change shown here is adding a long-form AKS LTS announcement blog post. Please update the PR description (or split the PR) so it accurately reflects the content being merged, which helps reviewers and release notes stay correct.
1.35 rollout notice and 1.32 deprecation notice.