@kubevirt-ui/kubevirt-api
    Preparing search index...

    Interface IoK8sApiAppsV1StatefulSetStatus

    StatefulSetStatus represents the current state of a StatefulSet.

    interface IoK8sApiAppsV1StatefulSetStatus {
        availableReplicas?: number;
        collisionCount?: number;
        conditions?: IoK8sApiAppsV1StatefulSetCondition[];
        currentReplicas?: number;
        currentRevision?: string;
        observedGeneration?: number;
        readyReplicas?: number;
        replicas: number;
        updatedReplicas?: number;
        updateRevision?: string;
    }
    Index

    Properties

    availableReplicas?: number

    Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset.

    int32

    collisionCount?: number

    collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

    int32

    Represents the latest available observations of a statefulset's current state.

    currentReplicas?: number

    currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.

    int32

    currentRevision?: string

    currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).

    observedGeneration?: number

    observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.

    int64

    readyReplicas?: number

    readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.

    int32

    replicas: number

    replicas is the number of Pods created by the StatefulSet controller.

    int32

    updatedReplicas?: number

    updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.

    int32

    updateRevision?: string

    updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)