Interface for a team.

interface Team {
    name: string;
    setup(clusterInfo: ClusterInfo): void;
}

Implemented by

Properties

Methods

Properties

name: string

Team name, expected to be unique

Methods

  • Setup method is invoked in the lifecycle of cluster provisioning after add-ons are provisioned but before and post deployment hooks.

    Parameters

    Returns void