Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Prepare Azure environments for new workloads—subscriptions, networking, identity, and landing zones
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/services/aks/addons.md
1# AKS - Add-ons23## Container Monitoring45```bicep6addonProfiles: {7omsagent: {8enabled: true9config: {10logAnalyticsWorkspaceResourceID: logAnalytics.id11}12}13}14```1516## Azure CNI Networking1718```bicep19networkProfile: {20networkPlugin: 'azure'21networkPolicy: 'calico'22}23```2425## Azure Key Vault Provider2627```bicep28addonProfiles: {29azureKeyvaultSecretsProvider: {30enabled: true31config: {32enableSecretRotation: 'true'33}34}35}36```3738## Application Gateway Ingress Controller3940```bicep41addonProfiles: {42ingressApplicationGateway: {43enabled: true44config: {45applicationGatewayId: appGateway.id46}47}48}49```5051## Add-ons Summary5253| Add-on | Purpose |54|--------|---------|55| omsagent | Container Insights monitoring |56| azureKeyvaultSecretsProvider | Mount Key Vault secrets as volumes |57| ingressApplicationGateway | Application Gateway as ingress controller |58| azurepolicy | Azure Policy for Kubernetes |59