# io.k8s.api.storage.v1.StorageHealth

From **Kubernetes**.

StorageHealth contains storage backend health reported by a CSI driver on a node.

- Type: `object`

## Properties

### `healthConditions`

- Required: false
- Type: `array`

healthConditions are the adverse storage backend conditions reported by the CSI driver. At most 16 conditions may be reported.

### `name`

- Required: true
- Type: `string`

name is the CSI driver name, matching CSINodeDriver.name.

## JSON Schema

```json
{"description":"StorageHealth contains storage backend health reported by a CSI driver on a node.","properties":{"healthConditions":{"description":"healthConditions are the adverse storage backend conditions reported by the CSI driver. At most 16 conditions may be reported.","items":{"$ref":"#/components/schemas/io.k8s.api.storage.v1.StorageHealthCondition"},"type":"array","x-kubernetes-list-type":"atomic"},"name":{"default":"","description":"name is the CSI driver name, matching CSINodeDriver.name.","type":"string"}},"required":["name"],"type":"object"}
```
