kubernetes_asyncio.client.models.v1_daemon_set_status module
Kubernetes
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
The version of the OpenAPI document: v1.34.3 Generated by: https://openapi-generator.tech
- class kubernetes_asyncio.client.models.v1_daemon_set_status.V1DaemonSetStatus(collision_count=None, conditions=None, current_number_scheduled=None, desired_number_scheduled=None, number_available=None, number_misscheduled=None, number_ready=None, number_unavailable=None, observed_generation=None, updated_number_scheduled=None, local_vars_configuration=None)
Bases:
objectNOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech
Do not edit the class manually.
- attribute_map = {'collision_count': 'collisionCount', 'conditions': 'conditions', 'current_number_scheduled': 'currentNumberScheduled', 'desired_number_scheduled': 'desiredNumberScheduled', 'number_available': 'numberAvailable', 'number_misscheduled': 'numberMisscheduled', 'number_ready': 'numberReady', 'number_unavailable': 'numberUnavailable', 'observed_generation': 'observedGeneration', 'updated_number_scheduled': 'updatedNumberScheduled'}
- property collision_count
Gets the collision_count of this V1DaemonSetStatus. # noqa: E501
Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision. # noqa: E501
- Returns:
The collision_count of this V1DaemonSetStatus. # noqa: E501
- Return type:
int
- property conditions
Gets the conditions of this V1DaemonSetStatus. # noqa: E501
Represents the latest available observations of a DaemonSet’s current state. # noqa: E501
- Returns:
The conditions of this V1DaemonSetStatus. # noqa: E501
- Return type:
list[V1DaemonSetCondition]
- property current_number_scheduled
Gets the current_number_scheduled of this V1DaemonSetStatus. # noqa: E501
The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ # noqa: E501
- Returns:
The current_number_scheduled of this V1DaemonSetStatus. # noqa: E501
- Return type:
int
- property desired_number_scheduled
Gets the desired_number_scheduled of this V1DaemonSetStatus. # noqa: E501
The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ # noqa: E501
- Returns:
The desired_number_scheduled of this V1DaemonSetStatus. # noqa: E501
- Return type:
int
- property number_available
Gets the number_available of this V1DaemonSetStatus. # noqa: E501
The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds) # noqa: E501
- Returns:
The number_available of this V1DaemonSetStatus. # noqa: E501
- Return type:
int
- property number_misscheduled
Gets the number_misscheduled of this V1DaemonSetStatus. # noqa: E501
The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ # noqa: E501
- Returns:
The number_misscheduled of this V1DaemonSetStatus. # noqa: E501
- Return type:
int
- property number_ready
Gets the number_ready of this V1DaemonSetStatus. # noqa: E501
numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition. # noqa: E501
- Returns:
The number_ready of this V1DaemonSetStatus. # noqa: E501
- Return type:
int
Gets the number_unavailable of this V1DaemonSetStatus. # noqa: E501
The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds) # noqa: E501
- Returns:
The number_unavailable of this V1DaemonSetStatus. # noqa: E501
- Return type:
int
- property observed_generation
Gets the observed_generation of this V1DaemonSetStatus. # noqa: E501
The most recent generation observed by the daemon set controller. # noqa: E501
- Returns:
The observed_generation of this V1DaemonSetStatus. # noqa: E501
- Return type:
int
- openapi_types = {'collision_count': 'int', 'conditions': 'list[V1DaemonSetCondition]', 'current_number_scheduled': 'int', 'desired_number_scheduled': 'int', 'number_available': 'int', 'number_misscheduled': 'int', 'number_ready': 'int', 'number_unavailable': 'int', 'observed_generation': 'int', 'updated_number_scheduled': 'int'}
- to_dict(serialize=False)
Returns the model properties as a dict
- to_str()
Returns the string representation of the model
- property updated_number_scheduled
Gets the updated_number_scheduled of this V1DaemonSetStatus. # noqa: E501
The total number of nodes that are running updated daemon pod # noqa: E501
- Returns:
The updated_number_scheduled of this V1DaemonSetStatus. # noqa: E501
- Return type:
int