ContainerTemplateSpec constructor

ContainerTemplateSpec({
  1. List<TemplateEnvironmentVariable>? environment,
  2. bool? private,
  3. String? image,
  4. String? command,
  5. String? workingDir,
  6. ServiceTemplateContainerMountSpec? storage,
  7. bool? onDemand,
  8. bool? writableRootFs,
})

Implementation

ContainerTemplateSpec({
  this.environment,
  this.private,
  this.image,
  this.command,
  this.workingDir,
  this.storage,
  this.onDemand,
  this.writableRootFs,
});