Skip to content

Commit 2224827

Browse files
authored
Update kubernetes-monitoring-enable.md
Updated container insights verification to reflect correct windows node pods and minor changes for uniformity of commands.
1 parent 879a0e5 commit 2224827

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/azure-monitor/containers/kubernetes-monitoring-enable.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -693,37 +693,37 @@ The number of pods should be equal to the number of Linux nodes on the cluster.
693693

694694
```output
695695
User@aksuser:~$ kubectl get ds ama-logs --namespace=kube-system
696-
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
697-
ama-logs 2 2 2 2 2 beta.kubernetes.io/os=linux 1d
696+
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
697+
ama-logs 2 2 2 2 2 <none> 1d
698698
```
699699

700700
**Verify that Windows nodes were deployed properly**
701701

702702
```
703-
kubectl get ds ama-metrics-win-node --namespace=kube-system
703+
kubectl get ds ama-logs-windows --namespace=kube-system
704704
```
705705

706706
The number of pods should be equal to the number of Windows nodes on the cluster. The output should resemble the following example:
707707

708708
```output
709709
User@aksuser:~$ kubectl get ds ama-logs-windows --namespace=kube-system
710-
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
711-
ama-logs-windows 2 2 2 2 2 beta.kubernetes.io/os=windows 1d
710+
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
711+
ama-logs-windows 2 2 2 2 2 <none> 1d
712712
```
713713

714714

715715
**Verify deployment of the Container insights solution**
716716

717717
```
718-
kubectl get deployment ama-logs-rs -n=kube-system
718+
kubectl get deployment ama-logs-rs --namespace=kube-system
719719
```
720720

721721
The output should resemble the following example:
722722

723723
```output
724-
User@aksuser:~$ kubectl get deployment ama-logs-rs -n=kube-system
725-
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
726-
ama-logs-rs 1 1 1 1 3h
724+
User@aksuser:~$ kubectl get deployment ama-logs-rs --namespace=kube-system
725+
NAME READY UP-TO-DATE AVAILABLE AGE
726+
ama-logs-rs 1/1 1 1 24d
727727
```
728728

729729
**View configuration with CLI**

0 commit comments

Comments
 (0)