@videosdk.live/server-sdk
    Preparing search index...

    Interface DeployImage

    A container image for a deployment version.

    interface DeployImage {
        imageCR?: string;
        imagePullSecret?: string;
        imageType?: "public" | "private" | "managed";
        imageUrl: string;
    }
    Index
    imageCR?: string

    Registry host. Parsed from imageUrl when a string image is given.

    imagePullSecret?: string

    Id of the pull secret for a private registry.

    imageType?: "public" | "private" | "managed"

    Image type: "public" (default), "private" (needs imagePullSecret), or "managed".

    imageUrl: string

    Full image ref, e.g. "registry.videosdk.live/acme/agent:1.4".