TaskSpec constructor

TaskSpec({
  1. List<Container>? containers,
  2. int? maxRetries,
  3. Map<String, String>? nodeSelector,
  4. String? serviceAccountName,
  5. String? timeoutSeconds,
  6. List<Volume>? volumes,
})

Implementation

TaskSpec({
  this.containers,
  this.maxRetries,
  this.nodeSelector,
  this.serviceAccountName,
  this.timeoutSeconds,
  this.volumes,
});