DeploymentSpec constructor
const
DeploymentSpec({
- int? minReadySeconds,
- bool? paused,
- int? progressDeadlineSeconds,
- int? replicas,
- int? revisionHistoryLimit,
- required LabelSelector selector,
- DeploymentStrategy? strategy,
- 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,
});