Skip to content

Instantly share code, notes, and snippets.

@MudraR
Created November 20, 2024 14:32
Show Gist options
  • Select an option

  • Save MudraR/ad3c0fd4a5819fe0b9d753581f15f0f4 to your computer and use it in GitHub Desktop.

Select an option

Save MudraR/ad3c0fd4a5819fe0b9d753581f15f0f4 to your computer and use it in GitHub Desktop.
Get Service CIDR of an AKS instance
# get Service CIDR
az account set --subscription $subscriptionId
$aksInfo = az aks show -g $aksResourceGroup -n $aksInstanceName | ConvertFrom-Json
$aksInfo.networkProfile.serviceCidrs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment