@nebius/js-sdk - v0.1.4
    Preparing search index...

    Interface NodeGroupStatus

    interface NodeGroupStatus {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.mk8s.v1.NodeGroupStatus";
        conditions: Condition[];
        events: RecurrentResourceEvent[];
        nodeCount: Long;
        outdatedNodeCount: Long;
        readyNodeCount: Long;
        reconciling: boolean;
        state: NodeGroupStatus_State;
        targetNodeCount: Long;
        version: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.mk8s.v1.NodeGroupStatus"
    conditions: Condition[]

    Deprecated, will be removed on 2025-08-01: it is not implemented well, messages should be used instead.

    nodeCount: Long

    Total number of nodes that are currently in the node group. Both ready and not ready nodes are counted.

    outdatedNodeCount: Long

    Total number of nodes that has outdated node configuration. These nodes will be replaced by new nodes with up-to-date configuration.

    readyNodeCount: Long

    Total number of nodes that successfully joined the cluster and are ready to serve workloads. Both outdated and up-to-date nodes are counted.

    reconciling: boolean

    Show that there are changes are in flight.

    targetNodeCount: Long

    Desired total number of nodes that should be in the node group. It is either NodeGroupSpec.fixed_node_count or arbitrary number between NodeGroupAutoscalingSpec.min_node_count and NodeGroupAutoscalingSpec.max_node_count decided by autoscaler.

    version: string

    Actual version of NodeGroup. Have format <major>.<minor>.<patch>-nebius-node.<infra_version> like "1.30.0-nebius-node.10". Where .. is Kubernetes version and <infra_version> is version of Node infrastructure and configuration, which update may include bug fixes, security updates and new features depending on worker node configuration.