Skip to content

Commit 2683ea1

Browse files
committed
Release notes for 2507
1 parent 7e21806 commit 2683ea1

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

AKS-Arc/aks-troubleshoot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ The following sections describe known issues for AKS enabled by Azure Arc:
2424

2525
| AKS Arc CRUD operation | Issue | Fix status |
2626
|------------------------|-------|------------|
27-
| AKS steady state | [AKS Arc telemetry pod consumes too much memory and CPU](telemetry-pod-resources.md) | Active |
2827
| AKS cluster delete | [Deleted AKS Arc cluster still visible on Azure portal](deleted-cluster-visible.md) | Active |
28+
| AKS steady state | [AKS Arc telemetry pod consumes too much memory and CPU](telemetry-pod-resources.md) | Fixed in 2507 release |
2929
| AKS cluster create | [Can't create AKS cluster or scale node pool because of issues with AKS Arc images](gallery-image-not-usable.md) | Fixed in 2507 release |
3030
| AKS steady state | [Disk space exhaustion on control plane VMs due to accumulation of kube-apiserver audit logs](kube-apiserver-log-overflow.md) | Fixed in 2507 release |
3131
| AKS cluster upgrade | [AKS Arc cluster stuck in "Upgrading" state](cluster-upgrade-status.md) | Fixed in 2505 release |
@@ -43,7 +43,7 @@ The following sections describe known issues for AKS enabled by Azure Arc:
4343
| Create validation | [KubeAPIServer unreachable error](kube-api-server-unreachable.md) |
4444
| Network configuration issues | [Use diagnostic checker](aks-arc-diagnostic-checker.md) |
4545
| Kubernetes steady state | [Resolve issues due to out-of-band deletion of storage volumes](delete-storage-volume.md) |
46-
| Kubernetes steady state | [Repeated Entra authentication prompts when running kubectl with Kubernetes RBAC](entra-prompts.md) |
46+
| Kubernetes steady state | [Repeated Entra authentication prompts when running kubectl with Kubernetes RBAC](entra-prompts.md) |
4747
| Release validation | [Azure Advisor upgrade recommendation message](azure-advisor-upgrade.md) |
4848
| Network validation | [Network validation error due to .local domain](network-validation-error-local.md) |
4949
| Network validation | [Troubleshoot BGP with FRR in AKS Arc environments](connectivity-troubleshoot.md) |

AKS-Arc/gallery-image-not-usable.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,10 @@ When you run `az aksarc get-versions`, you see the following errors:
4343

4444
## Mitigation
4545

46-
This issue was fixed in AKS on [Azure Local, version 2507](/azure/azure-local/whats-new?view=azloc-2507&preserve-view=true#features-and-improvements-in-2507). Upgrade your Azure Local deployment to the 2507 build.
46+
This issue was fixed in AKS on [Azure Local, version 2507](/azure/azure-local/whats-new?view=azloc-2507&preserve-view=true#features-and-improvements-in-2507). Upgrade your Azure Local deployment to the 2507 build.
4747

48-
- Upgrade your Azure Local deployment to the 2507 build.
4948
- Once updated, confirm that the images have been downloaded successfully by running the `az aksarc get-versions` command.
50-
- For new AKS clusters: new AKS clusters should now be created successfully.
51-
- For scaling existing AKS clusters: scaling existing AKS clusters continues to encounter issues. Please file a support case.
49+
- You should now be able to create new clusters and scale existing clusters using the available images.
5250

5351
## Next steps
5452

AKS-Arc/telemetry-pod-resources.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ ms.reviewer: abha
99

1010
---
1111

12-
# AKS Arc telemetry pod consumes too much memory and CPU
13-
1412
## Symptoms
1513

1614
The **akshci-telemetry** pod in a AKS Arc cluster can over time consume a lot of CPU and memory resources. If metrics are enabled, you can verify the CPU and memory usage using the following `kubectl` command:
@@ -28,9 +26,13 @@ akshci-telemetry-5df56fd5-rjqk4 996m 152Mi
2826

2927
## Mitigation
3028

29+
This issue was fixed in AKS on [Azure Local, version 2507](/azure/azure-local/whats-new?view=azloc-2507&preserve-view=true#features-and-improvements-in-2507). Upgrade your Azure Local deployment to the 2507 build.
30+
31+
### Workaround for Azure Local versions 2506 and older
32+
3133
To resolve this issue, set default **resource limits** for the pods in the `kube-system` namespace.
3234

33-
### Important notes
35+
#### Important notes
3436

3537
- Verify if you have any pods in the **kube-system** namespace that might require more memory than the default limit setting. If so, adjustments might be needed.
3638
- The **LimitRange** is applied to the **namespace**; in this case, the `kube-system` namespace. The default resource limits also apply to new pods that don't specify their own limits.
@@ -40,7 +42,7 @@ To resolve this issue, set default **resource limits** for the pods in the `kube
4042

4143
To proceed with setting the resource limits, you can run the following script. While the script uses `az aksarc get-credentials`, you can also use `az connectedk8s proxy` to get the proxy kubeconfig and access the Kubernetes cluster.
4244

43-
### Define the LimitRange YAML to set default CPU and memory limits
45+
#### Define the LimitRange YAML to set default CPU and memory limits
4446

4547
```powershell
4648
# Set the $cluster_name and $resource_group of the aksarc cluster
@@ -76,7 +78,7 @@ sleep 5
7678
kubectl get pods -l app=akshci-telemetry -n kube-system --kubeconfig "./kubeconfig-$cluster_name"
7779
```
7880

79-
### Validate if the resource limits were applied correctly
81+
#### Validate if the resource limits were applied correctly
8082

8183
1. Check the resource limits in the pod's YAML configuration:
8284

0 commit comments

Comments
 (0)