'DaemonSetStatus represents the current status of a daemon set.',
class=>'V1DaemonSetStatus',
required=>[],# TODO
}
);
__PACKAGE__->method_documentation(
{
'collision_count'=>{
datatype=>'int',
base_name=>'collisionCount',
description=>
'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.',
format=>'',
read_only=>'',
},
'conditions'=>{
datatype=>'ARRAY[V1DaemonSetCondition]',
base_name=>'conditions',
description=>
'Represents the latest available observations of a DaemonSet's current state.',
format=>'',
read_only=>'',
},
'current_number_scheduled'=>{
datatype=>'int',
base_name=>'currentNumberScheduled',
description=>
'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/',
format=>'',
read_only=>'',
},
'desired_number_scheduled'=>{
datatype=>'int',
base_name=>'desiredNumberScheduled',
description=>
'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/',
format=>'',
read_only=>'',
},
'number_available'=>{
datatype=>'int',
base_name=>'numberAvailable',
description=>
'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)',
format=>'',
read_only=>'',
},
'number_misscheduled'=>{
datatype=>'int',
base_name=>'numberMisscheduled',
description=>
'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/',
format=>'',
read_only=>'',
},
'number_ready'=>{
datatype=>'int',
base_name=>'numberReady',
description=>
'The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.',
format=>'',
read_only=>'',
},
'number_unavailable'=>{
datatype=>'int',
base_name=>'numberUnavailable',
description=>
'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)',
format=>'',
read_only=>'',
},
'observed_generation'=>{
datatype=>'int',
base_name=>'observedGeneration',
description=>
'The most recent generation observed by the daemon set controller.',
format=>'',
read_only=>'',
},
'updated_number_scheduled'=>{
datatype=>'int',
base_name=>'updatedNumberScheduled',
description=>
'The total number of nodes that are running updated daemon pod',