Hello @Sebastian Pacheco
Yes, you're correct that the Azure portal has changed and the option to create an application gateway for an AKS cluster is no longer available in the "Networks" section. However, there are still several ways to create an application gateway for your AKS cluster.
One way is to use the Azure CLI to create the application gateway. You can use the following command to create an application gateway with the AKS ingress controller:
az network application-gateway create --name <appgw-name> --resource-group <resource-group-name> --location <location> --sku Standard_v2 --capacity <capacity> --http-settings-cookie-based-affinity Disabled --frontend-port 80 --http-settings-port 80 --http-settings-protocol Http --public-ip-address <public-ip-name> --vnet-name <vnet-name> --subnet <subnet-name> --servers <server-name> --aks-zone-redundant true
This command creates an application gateway with the Standard_v2 SKU, a specified capacity, and the AKS ingress controller enabled. You can customize the command to fit your specific needs.
Another way to create an application gateway for your AKS cluster is to use the Azure portal to create a new application gateway resource and then configure it to work with your AKS cluster. This involves creating a new application gateway resource, configuring the backend pool to point to your AKS cluster, and configuring the listener and rules to route traffic to your AKS cluster.
I hope this helps! Let me know if you have any further questions.
If I have answered your query, please click "Accept as answer" as a token of appreciation