DeploymentSpec constructor

const DeploymentSpec({
  1. int? minReadySeconds,
  2. bool? paused,
  3. int? progressDeadlineSeconds,
  4. int? replicas,
  5. int? revisionHistoryLimit,
  6. required LabelSelector selector,
  7. DeploymentStrategy? strategy,
  8. required PodTemplateSpec template,
})

Default constructor.

Implementation

const DeploymentSpec({
  this.minReadySeconds,
  this.paused,
  this.progressDeadlineSeconds,
  this.replicas,
  this.revisionHistoryLimit,
  required this.selector,
  this.strategy,
  required this.template,
});