An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
Hello @Harithasan R
You are already on the correct fix path: 1.35.7 + latest node image.
Those CVEs are in AKS-managed add-ons (azure-ip-masq-agent v0.1.16-14 etc), not in Kubernetes itself. Node image updates don't fix them.
Correct way:
Force add-on rollout - re-run upgrade on same version: az aks upgrade -g <RG> -n <CLUSTER> --kubernetes-version 1.35.7 and az aks nodepool reimage -g <RG> --cluster-name <CLUSTER> -n <POOL>
Check tag: kubectl get ds -n kube-system azure-ip-masq-agent -o jsonpath='{.spec.template.spec.containers[0].image}' If it's still v0.1.16-14, AKS hasn't published a patched image for 1.35 yet in your region.
Wait. Defender rescans every 24h. Once Microsoft pushes v0.1.16-15+ it will auto-update and the finding clears in 24-72h.
check https://github.com/Azure/AKS/releases
If this answers your query, do click Accept Answer and Up-Vote for the same. And, if you have any further query do let us know.