ContainerTemplateSpec constructor

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

Implementation

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