@hashgraph/solo
    Preparing search index...
    interface Pods {
        create(
            podReference: PodReference,
            labels: Record<string, string>,
            containerName: ContainerName,
            containerImage: string,
            containerCommand: string[],
            startupProbeCommand: string[],
        ): Promise<Pod>;
        list(namespace: NamespaceName, labels: string[]): Promise<Pod[]>;
        listForAllNamespaces(labels: string[]): Promise<Pod[]>;
        read(podReference: PodReference): Promise<Pod>;
        readByReference(podReference: PodReference): Pod;
        waitForReadyStatus(
            namespace: NamespaceName,
            labels?: string[],
            maxAttempts?: number,
            delay?: number,
        ): Promise<Pod[]>;
        waitForRunningPhase(
            namespace: NamespaceName,
            labels: string[],
            maxAttempts: number,
            delay: number,
            podItemPredicate?: (items: Pod) => boolean,
        ): Promise<Pod[]>;
    }

    Implemented by

    Index

    Methods

    • Create a pod

      Parameters

      • podReference: PodReference

        the reference to the pod

      • labels: Record<string, string>

        list of label records where the key is the label name and the value is the label value

      • containerName: ContainerName

        the name of the container

      • containerImage: string

        the image of the container

      • containerCommand: string[]

        the command to run in the container

      • startupProbeCommand: string[]

        the command to run in the startup probe

      Returns Promise<Pod>

      the pod that was created

    • Check if pod's ready status is true

      Parameters

      • namespace: NamespaceName

        namespace

      • Optionallabels: string[]

        pod labels

      • OptionalmaxAttempts: number

        maximum attempts to check

      • Optionaldelay: number

        delay between checks in milliseconds

      Returns Promise<Pod[]>

    • Check if pod's phase is running

      Parameters

      • namespace: NamespaceName

        namespace

      • labels: string[]

        pod labels

      • maxAttempts: number

        maximum attempts to check

      • delay: number

        delay between checks in milliseconds

      • OptionalpodItemPredicate: (items: Pod) => boolean

        pod item predicate

      Returns Promise<Pod[]>