Thanks for posting your question in the Microsoft Q&A forum.
You can change the network policy to "none" using the Azure CLI command:
az aks update --resource-group YOUR_RESOURCE_GROUP --name YOUR_CLUSTER_NAME --network-policy none
This command will disable the current network policy on your AKS cluster. However, there are a few important considerations:
- Your AKS cluster must be running version 1.22 or later
- The cluster should not have any Windows node pools
- Ensure that you have removed any existing network policies from your cluster before running this command.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful