FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Expose Kube Service Using Azure Application Gateway + AGIC
How-ToDevOps

Expose Kube Service Using Azure Application Gateway + AGIC

via Dev.to DevOpsiapilgrim1mo ago

We’ll deploy: Azure Kubernetes Service (AKS) Azure Application Gateway (WAF v2) Azure Application Gateway Ingress Controller (AGIC) A simple NGINX test app 🔷 Prerequisites Make sure: az version kubectl version --client Login: az login Set variables: RG = rg-aks-agic-demo LOCATION = eastus2 AKS_NAME = aks-agic-demo APPGW_NAME = appgw-agic-demo VNET_NAME = vnet-agic-demo AKS_SUBNET = aks-subnet APPGW_SUBNET = appgw-subnet 🟢 Step 1 — Create Resource Group az group create \ --name $RG \ --location $LOCATION 🟢 Step 2 — Create VNet with 2 Subnets ⚠️ Application Gateway must be in a dedicated subnet. az network vnet create \ --resource-group $RG \ --name $VNET_NAME \ --address-prefix 10.0.0.0/8 \ --subnet-name $AKS_SUBNET \ --subnet-prefix 10.240.0.0/16 Create App Gateway subnet: az network vnet subnet create \ --resource-group $RG \ --vnet-name $VNET_NAME \ --name $APPGW_SUBNET \ --address-prefix 10.241.0.0/16 🟢 Step 3 — Create Public IP for App Gateway az network public-ip create \ --resour

Continue reading on Dev.to DevOps

Opens in a new tab

Read Full Article
22 views

Related Articles

How-To

What I learned about X-HEEP by Benchmarking

Medium Programming • 14h ago

No more Chinese Polestar 3s as production shifts entirely to the US
How-To

No more Chinese Polestar 3s as production shifts entirely to the US

Ars Technica • 15h ago

How-To

The most important 40 mcq with its answers How to use Android visual studio to make a mobile app

Medium Programming • 15h ago

What is Agent Script? How to Build Agents with It in Agentforce
How-To

What is Agent Script? How to Build Agents with It in Agentforce

Medium Programming • 15h ago

I Coded 3 Famous Trading Strategies in Pine Script and Backtested All of Them. None Passed.
How-To

I Coded 3 Famous Trading Strategies in Pine Script and Backtested All of Them. None Passed.

Medium Programming • 16h ago

Discover More Articles