2
2
title : Enable Premium SSD v2 Disk support on Azure Kubernetes Service (AKS)
3
3
description : Learn how to enable and configure Premium SSD v2 Disks in an Azure Kubernetes Service (AKS) cluster
4
4
ms.topic : article
5
- ms.date : 04/10 /2023
5
+ ms.date : 04/25 /2023
6
6
7
7
---
8
8
@@ -123,7 +123,7 @@ spec:
123
123
volumes :
124
124
- name : volume
125
125
persistentVolumeClaim :
126
- claimName : premium -disk
126
+ claimName : premium2 -disk
127
127
` ` `
128
128
129
129
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
147
147
Volumes:
148
148
volume:
149
149
Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace)
150
- ClaimName: azure-managed -disk
150
+ ClaimName: premium2 -disk
151
151
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
157
163
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
163
172
[...]
164
173
```
165
174
0 commit comments