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

    Interface ControlPlaneSpec

    interface ControlPlaneSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.mk8s.v1.ControlPlaneSpec";
        endpoints?: ControlPlaneEndpointsSpec;
        etcdClusterSize: Long;
        subnetId: string;
        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.ControlPlaneSpec"
    etcdClusterSize: Long

    Number of instances in etcd cluster. 3 by default. Control plane with etcd_cluster_size: 3 called "Highly Available" ("HA"), because it's Kubernetes API will be available despite a failure of one control plane instance.

    subnetId: string

    Nebius VPC Subnet ID where control plane instances will be located. Also will be default NodeGroup subnet.

    version: string

    Desired Kubernetes version of the cluster. For now only acceptable format is <major>.<minor> like "1.31". Option for patch version update will be added later.