An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
Hello @Francisco Ruano
Based on the information provided, this looks less like a networking issue and more like an issue with the Azure Portal Kubernetes Resource View for this specific cluster configuration.
Since:
- kubectl connectivity works correctly.
- The problem only occurs in the Azure Portal.
- Azure RBAC is enabled.
- The cluster is private but has a Private Cluster Public FQDN enabled.
- The primary differences from the working cluster are Kubernetes 1.35.6 and Azure CNI Overlay.
I'd recommend checking the following:
- Verify Azure RBAC and Kubernetes RBAC
Ensure your account has an Azure role such as Azure Kubernetes Service RBAC Cluster Admin or Cluster User, along with the required Kubernetes permissions to view cluster resources.
- Inspect the browser network trace
Open the browser Developer Tools (F12) and check for failed requests (401, 403, 404, or 500) when loading the Kubernetes Resource View. Also capture the x-ms-correlation-request-id, which is valuable for support.
- Confirm the issue isn't client-specific
Test using an InPrivate/Incognito session or another browser to rule out cached portal artifacts.
- Compare the cluster configuration
Since the older AKS cluster (1.33.12, Azure CNI node subnet mode) works while the newer cluster (1.35.6, Azure CNI Overlay) does not, this may indicate a regression in the portal integration rather than a cluster configuration issue. Azure CNI Overlay is now the default networking mode for new AKS clusters, so this difference is worth highlighting in your support request.
- If CLI access works, open a support request
If commands such as:
kubectl get nodes
kubectl get pods -A
kubectl get deployments -A
all succeed while only the Azure Portal fails to render resources, the Kubernetes API server is functioning correctly. This strongly suggests an Azure Portal backend or integration issue rather than a problem with the private cluster itself.
When opening a support case, include:
- Cluster Resource ID
- Kubernetes version (1.35.6)
- Network plugin (Azure CNI Overlay)
- Browser HAR/F12 logs
- Correlation ID from the failed portal request
- Output of:
*az aks show -g <resource-group> -n <cluster-name>* *kubectl version* *kubectl cluster-info*
There have been previous reports where the Azure Portal Kubernetes Resource View experienced issues specifically with private AKS clusters, even though direct kubectl access remained fully functional, making this pattern consistent with a portal-side issue rather than a cluster networking problem.
Please "Accept the Answer" if this information helped you. This will help us and others in the community as well.