Skip to content

Commit 059184d

Browse files
committed
updated pod manifest and output
1 parent 61c9ccf commit 059184d

File tree

1 file changed

+22
-13
lines changed

1 file changed

+22
-13
lines changed

articles/aks/use-premium-v2-disks.md

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Enable Premium SSD v2 Disk support on Azure Kubernetes Service (AKS)
33
description: Learn how to enable and configure Premium SSD v2 Disks in an Azure Kubernetes Service (AKS) cluster
44
ms.topic: article
5-
ms.date: 04/10/2023
5+
ms.date: 04/25/2023
66

77
---
88

@@ -123,7 +123,7 @@ spec:
123123
volumes:
124124
- name: volume
125125
persistentVolumeClaim:
126-
claimName: premium-disk
126+
claimName: premium2-disk
127127
```
128128
129129
Create the pod with the [kubectl apply][kubectl-apply] command, as shown in the following example:
@@ -147,19 +147,28 @@ kubectl describe pod nginx-premium2
147147
Volumes:
148148
volume:
149149
Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace)
150-
ClaimName: azure-managed-disk
150+
ClaimName: premium2-disk
151151
ReadOnly: false
152-
default-token-smm2n:
153-
Type: Secret (a volume populated by a Secret)
154-
SecretName: default-token-smm2n
155-
Optional: false
156-
[...]
152+
kube-api-access-sh59b:
153+
Type: Projected (a volume that contains injected data from multiple sources)
154+
TokenExpirationSeconds: 3607
155+
ConfigMapName: kube-root-ca.crt
156+
ConfigMapOptional: <nil>
157+
DownwardAPI: true
158+
QoS Class: Burstable
159+
Node-Selectors: <none>
160+
Tolerations: node.kubernetes.io/memory-pressure:NoSchedule op=Exists
161+
node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
162+
node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
157163
Events:
158-
Type Reason Age From Message
159-
---- ------ ---- ---- -------
160-
Normal Scheduled 2m default-scheduler Successfully assigned mypod to aks-nodepool1-79590246-0
161-
Normal SuccessfulMountVolume 2m kubelet, aks-nodepool1-79590246-0 MountVolume.SetUp succeeded for volume "default-token-smm2n"
162-
Normal SuccessfulMountVolume 1m kubelet, aks-nodepool1-79590246-0 MountVolume.SetUp succeeded for volume "pvc-faf0f176-8b8d-11e8-923b-deb28c58d242"
164+
Type Reason Age From Message
165+
---- ------ ---- ---- -------
166+
Normal Scheduled 7m58s default-scheduler Successfully assigned default/nginx-premium2 to aks-agentpool-12254644-vmss000006
167+
Normal SuccessfulAttachVolume 7m46s attachdetach-controller AttachVolume.Attach succeeded for volume "pvc-ff39fb64-1189-4c52-9a24-e065b855b886"
168+
Normal Pulling 7m39s kubelet Pulling image "mcr.microsoft.com/oss/nginx/nginx:1.15.5-alpine"
169+
Normal Pulled 7m38s kubelet Successfully pulled image "mcr.microsoft.com/oss/nginx/nginx:1.15.5-alpine" in 1.192915667s
170+
Normal Created 7m38s kubelet Created container nginx-premium2
171+
Normal Started 7m38s kubelet Started container nginx-premium2
163172
[...]
164173
```
165174

0 commit comments

Comments
 (0)