Skip to content

Commit 86b2f73

Browse files
Merge pull request #252078 from AjayBathini-MSFT/patch-108
(AzureCXP) fixes MicrosoftDocs/azure-docs#114844
2 parents 337b266 + 3e0d0f1 commit 86b2f73

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

articles/aks/azure-csi-files-storage-provision.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -161,27 +161,27 @@ The following YAML creates a pod that uses the persistent volume claim *my-azure
161161

162162
```yaml
163163
kind: Pod
164-
apiVersion: v1
165-
metadata:
166-
name: mypod
167-
spec:
168-
containers:
169-
- name: mypod
170-
image: mcr.microsoft.com/oss/nginx/nginx:1.15.5-alpine
171-
resources:
172-
requests:
173-
cpu: 100m
174-
memory: 128Mi
175-
limits:
176-
cpu: 250m
177-
memory: 256Mi
178-
volumeMounts:
179-
- mountPath: /mnt/azure
180-
name: volume
181-
volumes:
182-
- name: volume
183-
persistentVolumeClaim:
184-
claimName: my-azurefile
164+
apiVersion: v1
165+
metadata:
166+
name: mypod
167+
spec:
168+
containers:
169+
- name: mypod
170+
image: mcr.microsoft.com/oss/nginx/nginx:1.15.5-alpine
171+
resources:
172+
requests:
173+
cpu: 100m
174+
memory: 128Mi
175+
limits:
176+
cpu: 250m
177+
memory: 256Mi
178+
volumeMounts:
179+
- mountPath: /mnt/azure
180+
name: volume
181+
volumes:
182+
- name: volume
183+
persistentVolumeClaim:
184+
claimName: my-azurefile
185185
```
186186

187187
2. Create the pod using the [`kubectl apply`][kubectl-apply] command.

0 commit comments

Comments
 (0)