Skip to content

Commit ab86911

Browse files
committed
fix tab grouping
1 parent d24fa38 commit ab86911

File tree

1 file changed

+17
-19
lines changed

1 file changed

+17
-19
lines changed

articles/aks/network-observability-managed-cli.md

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ ms.custom: template-how-to-pattern, devx-track-azurecli
1212

1313
# Setup Network Observability for Azure Kubernetes Service (AKS) - Azure managed Prometheus and Grafana
1414

15-
AKS Network Observability is used to collect the network traffic data of your AKS cluster. Network Observability enables a centralized platform for monitoring application and network health. Prometheus collects AKS Network Observability metrics, and Grafana visualizes them. Both Cilium and non-Cilium data plane are supported. In this article, learn how to enable the Network Observability add-on and use Azure managed Prometheus and Grafana to visualize the scraped metrics.
15+
AKS Network Observability is used to collect the network traffic data of your AKS cluster.
16+
Network Observability enables a centralized platform for monitoring application and network health.
17+
Prometheus collects AKS Network Observability metrics, and Grafana visualizes them. Both Cilium and non-Cilium data plane are supported.
18+
In this article, learn how to enable Network Observability and use Azure managed Prometheus and Grafana to visualize the scraped metrics.
1619

1720
For more information about AKS Network Observability, see [What is Azure Kubernetes Service (AKS) Network Observability?](network-observability-overview.md).
1821

@@ -31,7 +34,7 @@ For more information about AKS Network Observability, see [What is Azure Kuberne
3134
>
3235
>For lower Kubernetes versions, extra steps are required to enable Network Observability.
3336
34-
#### [**Kubernetes version >= 1.29**](#tab/later-k8s-versions)
37+
#### [**Kubernetes version >= 1.29**](#tab/newer-k8s-versions)
3538

3639
#### Create a resource group
3740

@@ -45,14 +48,13 @@ az group create \
4548

4649
#### Create AKS cluster
4750

48-
Create an AKS cluster with [az aks create](/cli/azure/aks#az-aks-create). The following example creates an AKS cluster named **myAKSCluster** in the **myResourceGroup** resource group:
51+
Create an AKS cluster with [az aks create](/cli/azure/aks#az-aks-create).
52+
The following examples each create an AKS cluster named **myAKSCluster** in the **myResourceGroup** resource group.
4953

50-
##### [**Non-Cilium**](#tab/non-cilium)
54+
##### Example 1: **Non-Cilium**
5155

5256
Use [az aks create](/cli/azure/aks#az-aks-create) in the following example to create a non-Cilium AKS cluster.
5357

54-
##### New cluster
55-
5658
```azurecli-interactive
5759
az aks create \
5860
--name myAKSCluster \
@@ -65,7 +67,7 @@ az aks create \
6567
--kubernetes-version 1.29
6668
```
6769

68-
#### [**Cilium**](#tab/cilium)
70+
#### Example 2: **Cilium**
6971

7072
Use [az aks create](/cli/azure/aks#az-aks-create) in the following example to create a Cilium AKS cluster.
7173

@@ -83,8 +85,6 @@ az aks create \
8385
--pod-cidr 192.168.0.0/16
8486
```
8587

86-
---
87-
8888
#### [**Kubernetes version < 1.29**](#tab/older-k8s-versions)
8989

9090
#### Install the `aks-preview` Azure CLI extension
@@ -137,15 +137,15 @@ az group create \
137137
--location eastus
138138
```
139139

140-
#### Create AKS cluster
140+
#### Create or Update an AKS cluster
141141

142-
Create an AKS cluster with [az aks create](/cli/azure/aks#az-aks-create). The following example creates an AKS cluster named **myAKSCluster** in the **myResourceGroup** resource group:
142+
The following examples each create or update an AKS cluster named **myAKSCluster** in the **myResourceGroup** resource group.
143143

144-
##### [**Non-Cilium**](#tab/non-cilium)
144+
##### Example 1: **Non-Cilium**
145145

146-
Use [az aks create](/cli/azure/aks#az-aks-create) in the following example to create a non-Cilium AKS cluster with Network Observability.
146+
###### Create Cluster
147147

148-
###### New cluster
148+
Use [az aks create](/cli/azure/aks#az-aks-create) in the following example to create a non-Cilium AKS cluster with Network Observability.
149149

150150
```azurecli-interactive
151151
az aks create \
@@ -159,9 +159,9 @@ az aks create \
159159
--enable-network-observability
160160
```
161161

162-
###### Existing cluster
162+
###### Update Existing Cluster
163163

164-
Use [az aks update](/cli/azure/aks#az-aks-update) to enable Network Observability for an existing cluster.
164+
Use [az aks update](/cli/azure/aks#az-aks-update) to enable Network Observability for an existing non-Cilium cluster.
165165

166166
```azurecli-interactive
167167
az aks update \
@@ -170,7 +170,7 @@ az aks update \
170170
--enable-network-observability
171171
```
172172

173-
##### [**Cilium**](#tab/cilium)
173+
##### Example 2: **Cilium**
174174

175175
Use [az aks create](/cli/azure/aks#az-aks-create) in the following example to create a Cilium AKS cluster.
176176

@@ -190,8 +190,6 @@ az aks create \
190190

191191
---
192192

193-
---
194-
195193
## Azure managed Prometheus and Grafana
196194

197195
Use the following example to install and enable Prometheus and Grafana for your AKS cluster.

0 commit comments

Comments
 (0)