pub struct TaskSpec {
pub containers: Option<Vec<Container>>,
pub max_retries: Option<i32>,
pub node_selector: Option<HashMap<String, String>>,
pub service_account_name: Option<String>,
pub timeout_seconds: Option<i64>,
pub volumes: Option<Vec<Volume>>,
}Expand description
TaskSpec is a description of a task.
This type is not used in any activity, and only used as part of another schema.
Fields§
§containers: Option<Vec<Container>>Optional. List of containers belonging to the task. We disallow a number of fields on this Container.
max_retries: Option<i32>Optional. Number of retries allowed per task, before marking this job failed. Defaults to 3.
node_selector: Option<HashMap<String, String>>Optional. The Node Selector configuration. Map of selector key to a value which matches a node.
service_account_name: Option<String>Optional. Email address of the IAM service account associated with the task of a job execution. The service account represents the identity of the running task, and determines what permissions the task has. If not provided, the task will use the project’s default service account.
timeout_seconds: Option<i64>Optional. Duration in seconds the task may be active before the system will actively try to mark it failed and kill associated containers. This applies per attempt of a task, meaning each retry can run for the full timeout. Defaults to 600 seconds.
volumes: Option<Vec<Volume>>Optional. List of volumes that can be mounted by containers belonging to the task.