Skip to content

Commit 8e21965

Browse files
authored
Merge pull request #1477 from kubernetes-sigs/refine-inline-volume-doc
doc: refine inline volume example
2 parents 7424753 + 0b0e739 commit 8e21965

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

deploy/example/e2e_usage.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,8 @@ Filesystem Size
101101
In the above example, there is a `/mnt/azurefile` directory mounted as cifs filesystem.
102102

103103
#### Option#3: Inline volume
104-
> only available from `v1.3.0` for SMB protocol (NFS protocol is not supported) <br>
105-
> inline volume feature can only read storage account name and key in the same namespace, cannot use cluster identity to read storage account name and key <br>
106-
- Create `azure-secret` with existing storage account name and key in the same namespace as pod
107-
> in below example, both secret and pod are in `default` namespace
104+
> to avoid performance issue, use persistent volume instead of inline volume when numerous pods are accessing the same volume.
105+
- in below SMB protocol example, create `azure-secret` with existing storage account name and key in the same namespace as pod, both secret and pod are in `default` namespace
108106
```console
109107
kubectl create secret generic azure-secret --from-literal azurestorageaccountname=NAME --from-literal azurestorageaccountkey="KEY" --type=Opaque
110108
```

0 commit comments

Comments
 (0)