HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

az aks — Manage Azure Kubernetes Service (AKS) clusters. Part of `azure-cli` (also known as `az`). More infor

Submitted by: @import:tldr-pages··
0
Viewed 0 times
akscommandazureaz aksclimanagekubernetesservice

Problem

How to use the az aks command: Manage Azure Kubernetes Service (AKS) clusters. Part of azure-cli (also known as az). More information: <https://learn.microsoft.com/cli/azure/aks>.

Solution

az aks — Manage Azure Kubernetes Service (AKS) clusters. Part of azure-cli (also known as az). More information: <https://learn.microsoft.com/cli/azure/aks>.

List AKS clusters:
az aks list {{[-g|--resource-group]}} {{resource_group}}


Create a new AKS cluster:
az aks create {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}} {{[-c|--node-count]}} {{count}} --node-vm-size {{size}}


Delete an AKS cluster:
az aks delete {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}}


Get the access credentials for an AKS cluster:
az aks get-credentials {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}}


Get the upgrade versions available for an AKS cluster:
az aks get-upgrades {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}}

Code Snippets

List AKS clusters

az aks list {{[-g|--resource-group]}} {{resource_group}}

Create a new AKS cluster

az aks create {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}} {{[-c|--node-count]}} {{count}} --node-vm-size {{size}}

Delete an AKS cluster

az aks delete {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}}

Get the access credentials for an AKS cluster

az aks get-credentials {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}}

Get the upgrade versions available for an AKS cluster

az aks get-upgrades {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}}

Context

tldr-pages: common/az aks

Revisions (0)

No revisions yet.