Files
c/kubernetes/docs/v1_node_condition.md

16 lines
1.4 KiB
Markdown
Raw Normal View History

2021-03-17 16:35:19 +08:00
# v1_node_condition_t
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**last_heartbeat_time** | **char \*** | Last time we got an update on a given condition. | [optional]
**last_transition_time** | **char \*** | Last time the condition transit from one status to another. | [optional]
**message** | **char \*** | Human readable message indicating details about last transition. | [optional]
**reason** | **char \*** | (brief) reason for the condition's last transition. | [optional]
**status** | **char \*** | Status of the condition, one of True, False, Unknown. |
**type** | **kubernetes_v1_node_condition_TYPE_e** | Type of node condition. Possible enum values: - `\"DiskPressure\"` means the kubelet is under pressure due to insufficient available disk. - `\"MemoryPressure\"` means the kubelet is under pressure due to insufficient available memory. - `\"NetworkUnavailable\"` means that network for the node is not correctly configured. - `\"PIDPressure\"` means the kubelet is under pressure due to insufficient available PID. - `\"Ready\"` means kubelet is healthy and ready to accept pods. |
2021-03-17 16:35:19 +08:00
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)