# Zilla::IoK8sApiCoreV1NodeStatus ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **addresses** | [**Array<IoK8sApiCoreV1NodeAddress>**](IoK8sApiCoreV1NodeAddress.md) | List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See http://pr.k8s.io/79391 for an example. | [optional] | | **allocatable** | **Hash<String, String>** | Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity. | [optional] | | **capacity** | **Hash<String, String>** | Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity | [optional] | | **conditions** | [**Array<IoK8sApiCoreV1NodeCondition>**](IoK8sApiCoreV1NodeCondition.md) | Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition | [optional] | | **config** | [**IoK8sApiCoreV1NodeConfigStatus**](IoK8sApiCoreV1NodeConfigStatus.md) | | [optional] | | **daemon_endpoints** | [**IoK8sApiCoreV1NodeDaemonEndpoints**](IoK8sApiCoreV1NodeDaemonEndpoints.md) | | [optional] | | **images** | [**Array<IoK8sApiCoreV1ContainerImage>**](IoK8sApiCoreV1ContainerImage.md) | List of container images on this node | [optional] | | **node_info** | [**IoK8sApiCoreV1NodeSystemInfo**](IoK8sApiCoreV1NodeSystemInfo.md) | | [optional] | | **phase** | **String** | NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated. | [optional] | | **volumes_attached** | [**Array<IoK8sApiCoreV1AttachedVolume>**](IoK8sApiCoreV1AttachedVolume.md) | List of volumes that are attached to the node. | [optional] | | **volumes_in_use** | **Array<String>** | List of attachable volumes in use (mounted) by the node. | [optional] | ## Example ```ruby require 'zilla' instance = Zilla::IoK8sApiCoreV1NodeStatus.new( addresses: null, allocatable: null, capacity: null, conditions: null, config: null, daemon_endpoints: null, images: null, node_info: null, phase: null, volumes_attached: null, volumes_in_use: null ) ```