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

    Interface ControlPlaneSpec

    Represents the nebius.mk8s.v1alpha1.ControlPlaneSpec protobuf message.

    interface ControlPlaneSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.mk8s.v1alpha1.ControlPlaneSpec";
        endpoints?: ControlPlaneEndpointsSpec;
        etcdClusterSize: Long;
        subnetId: string;
        version: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Represents the nebius.mk8s.v1alpha1.ControlPlaneSpec protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.mk8s.v1alpha1.ControlPlaneSpec protobuf message.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.mk8s.v1alpha1.ControlPlaneSpec"

    Contains the fully qualified protobuf type name.

    Contains the endpoints protobuf field.

    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

    Subnet ID where control plane instances will be located.

    version: string

    Version is 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.