ContainerSpec constructor
ContainerSpec({
- String? command,
- String? workingDir,
- required String image,
- ServiceRunAs? runAs,
- SecretValue? pullSecret,
- List<
EnvironmentVariable> ? environment, - ContainerMountSpec? storage,
- bool? onDemand,
- bool? writableRootFs,
- bool? private,
Implementation
ContainerSpec({
this.command,
this.workingDir,
required this.image,
this.runAs,
this.pullSecret,
List<EnvironmentVariable>? environment,
this.storage,
this.onDemand,
this.writableRootFs,
this.private,
}) : environment = environment ?? [];