Multiple stages that are deployed in parallel

Constructors

Properties

Methods

Constructors

  • Parameters

    • id: string

      Identifier for this Wave

    • Optionalprops: WaveProps

    Returns Wave

Properties

id: string

Identifier for this Wave

post: Step[]

Additional steps that are run after all of the stages in the wave

pre: Step[]

Additional steps that are run before any of the stages in the wave

stages: StageDeployment[]

The stages that are deployed in this wave

Methods

  • Add an additional step to run after all of the stages in this wave

    Parameters

    • Rest...steps: Step[]

    Returns void

  • Add an additional step to run before any of the stages in this wave

    Parameters

    • Rest...steps: Step[]

    Returns void

  • Add a Stage to this wave

    It will be deployed in parallel with all other stages in this wave.

    Parameters

    Returns StageDeployment