Skip to content

Commit 79ce6fc

Browse files
committed
Fix tables
1 parent 6fcc44b commit 79ce6fc

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

AKS-Hybrid/create-storage-classes.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -245,33 +245,33 @@ When a storage class is updated, if all the properties that changed are updatabl
245245

246246
| Property | Type | In-place update | Description |
247247
| -- | -- | -- | -- |
248-
| `type` | `"NFS"` | N/A | Specify this is an NFS type. |
248+
| `type` | `NFS` | N/A | Specify this is an NFS type. |
249249
| `server` | `string` | No | NFS server address. |
250250
| `share` | `string` | No | NFS share. |
251-
| `subDir` | `string \| undefined` | No | Subdirectory under `share`. If the subdirectory doesn't exist, the driver creates it. |
252-
| `mountPermissions` | `string \| undefined` | No | Mounted folder permissions. Default is 0. If set as nonzero, the driver performs `chmod` after mount. |
253-
| `onDelete` | `"Delete" \| "Retain"` | No | The action to take when an NFS volume is deleted. Default is `Delete`. |
251+
| `subDir` | `string` \| `undefined` | No | Subdirectory under `share`. If the subdirectory doesn't exist, the driver creates it. |
252+
| `mountPermissions` | `string` \| `undefined` | No | Mounted folder permissions. Default is 0. If set as nonzero, the driver performs `chmod` after mount. |
253+
| `onDelete` | `Delete` \| `Retain` | No | The action to take when an NFS volume is deleted. Default is `Delete`. |
254254

255255
### SMB
256256

257257
| Property | Type | In-place update | Description |
258258
| -- | -- | -- | -- |
259-
| `type` | `"SMB"` | N/A | Specify this is an SMB type. |
259+
| `type` | `SMB` | N/A | Specify this is an SMB type. |
260260
| `source` | `string` | No | SMB server source. |
261-
| `subDir` | `string \| undefined` | No | Subdirectory under share. If the subdirectory doesn't exist, the driver creates it. |
262-
| `username` | `string \| undefined` | **Yes** | Server username. |
263-
| `password` | `string \| undefined` (secret) | **Yes** | Server password. |
264-
| `domain` | `string \| undefined` | **Yes** | Server domain. |
261+
| `subDir` | `string` \| `undefined` | No | Subdirectory under share. If the subdirectory doesn't exist, the driver creates it. |
262+
| `username` | `string` \| `undefined` | **Yes** | Server username. |
263+
| `password` | `string` \| `undefined` (secret) | **Yes** | Server password. |
264+
| `domain` | `string` \| `undefined` | **Yes** | Server domain. |
265265

266266
### AksArcDisk (only for AKS Arc clusters)
267267

268268
You can create a storage class that uses custom disks. This process is only for AKS Arc clusters. See [Create custom storage class for disks](container-storage-interface-disks.md?tabs=23H2#create-custom-storage-class-for-disks).
269269

270270
| Property | type | In-place update | description |
271271
| -- | -- | -- | -- |
272-
| `type` | `"AksArcDisk"` | N/A | Specify this is the AksArcDisk type. |
272+
| `type` | `AksArcDisk` | N/A | Specify this is the AksArcDisk type. |
273273
| `storagePathId` | `string` | No | The resource ID for the storage path. |
274-
| `fsType` | `string \| undefined` | No | `fsType` parameters for the storage class. If the storage class contains Linux workloads, set it to `ext4`. Otherwise, leave it undefined. |
274+
| `fsType` | `string` \| `undefined` | No | `fsType` parameters for the storage class. If the storage class contains Linux workloads, set it to `ext4`. Otherwise, leave it undefined. |
275275

276276
## Other features
277277

@@ -280,18 +280,18 @@ You can create a storage class that uses custom disks. This process is only for
280280
Current detections include:
281281

282282
| Attribute | Azure property | Annotation key | Values | Description |
283-
| -- | -- | -- | -- | --
284-
| Performance | `performance` | `performance` | `"Ultra" \| "Premium" \| "Standard" \| "NotAvailable"` | The performance of the storage class. |
285-
| Failover speed | `failoverSpeed` | `failover` | `"Slow" \| "Fast" \| "Super" \| "NotAvailable"` | How fast a pod using a volume of the storage class can recover when the pod is migrated to another node. |
286-
| Access mode | `accssModes` | `accessModes` | Array of `"ReadWriteOnce" \| "ReadWriteMany" \| "ReadOnlyMany"`. | If a storage class supports an access mode, a volume of the storage class can be bound to the PVC if PVC specifies its `spec.accessModes` to the access mode. |
283+
| -- | -- | -- | -- | -- |
284+
| Performance | `performance` | `performance` | `Ultra` \| `Premium` \| `Standard` \| `NotAvailable` | The performance of the storage class. |
285+
| Failover speed | `failoverSpeed` | `failover` | `Slow` \| `Fast` \| `Super` \| `NotAvailable` | How fast a pod using a volume of the storage class can recover when the pod is migrated to another node. |
286+
| Access mode | `accssModes` | `accessModes` | Array of `ReadWriteOnce` \| `ReadWriteMany` \| `ReadOnlyMany`. | If a storage class supports an access mode, a volume of the storage class can be bound to the PVC if PVC specifies its `spec.accessModes` to the access mode. |
287287

288288
You can see the attribute detection results of a storage class in the cloud as described in the next section. If any detection failed or timed out, the property isn't available.
289289

290290
#### Azure portal
291291

292292
The attribute detection results are available in the list.
293293

294-
### REST CLI
294+
#### REST CLI
295295

296296
```azurecli
297297
> az rest --method get `

0 commit comments

Comments
 (0)