Covers all functions related to pod management. In the future this should also include delete, and potentially recovery functions.

interface PodManager {
    createPod: ((settings: PodSettings, overwrite: boolean) => Promise<void>);
}

Implemented by

Properties

Properties

createPod: ((settings: PodSettings, overwrite: boolean) => Promise<void>)

Creates a pod for the given settings.

Type declaration

    • (settings, overwrite): Promise<void>
    • Parameters

      • settings: PodSettings

        Settings describing the pod.

      • overwrite: boolean

        If the creation should proceed if there already is a resource there.

      Returns Promise<void>