Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions content/docs/concepts/csidriver/features/powerscale.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ For a cluster with multiple network interfaces and if a user wants to segregate

## Multi-Access Zone Support for Multi-Tenant Deployments

For a cluster with multiple network interfaces per cluster worker node, you can specify the `AZNetwork` in the storage class to configure the NFS export with all of the associated IP addresses in that network. See the storage class snippets below for examples of storage classes using this feature.
For a cluster with multiple network interfaces per cluster worker node, you can specify the `AzNetwork` in the storage class to configure the NFS export with all of the associated IP addresses in that network. See the storage class snippets below for examples of storage classes using this feature.

```yaml
apiVersion: storage.k8s.io/v1
Expand All @@ -453,8 +453,8 @@ reclaimPolicy: Delete
allowVolumeExpansion: true
parameters:
AccessZone: access-zone-one
AZServiceIP: 10.0.0.1
AZNetwork: 192.168.100.0/24
AzServiceIP: 10.0.0.1
AzNetwork: 192.168.100.0/24
```

```yaml
Expand All @@ -467,8 +467,8 @@ reclaimPolicy: Delete
allowVolumeExpansion: true
parameters:
AccessZone: access-zone-two
AZServiceIP: 10.0.0.2
AZNetwork: 172.16.0.0/24
AzServiceIP: 10.0.0.2
AzNetwork: 172.16.0.0/24
```

>**NOTE:** Multi-Access Zone Support for Multi-Tenant Deployments does not support CSM Authorization.
Expand Down
Loading