PhaseConfigResponse

data class PhaseConfigResponse(val percentage: Int, val phaseId: String, val profiles: List<String>, val verify: Boolean)

PhaseConfig represents the configuration for a phase in the custom canary deployment.

Constructors

Link copied to clipboard
fun PhaseConfigResponse(percentage: Int, phaseId: String, profiles: List<String>, verify: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Percentage deployment for the phase.

Link copied to clipboard

The ID to assign to the Rollout phase. This value must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: ^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$.

Link copied to clipboard

Skaffold profiles to use when rendering the manifest for this phase. These are in addition to the profiles list specified in the DeliveryPipeline stage.

Link copied to clipboard

Whether to run verify tests after the deployment.