Task
Task
The task
resource is the new form of the lifecycle scripts, that can now be embedded anywhere on a page within the instructions.
Each task resource can have multiple condition
blocks that need to be met before the task is completed, which in turn
can have multiple of each type of lifecycle block and each of the blocks are executed in sequence in the order they appear in code.
Attributes
SuccessMessage success_message
type: string
The message to display when the task is successfully completed.
Configuration for the task. This configuration will be used for all scripts within the task.
The conditions that have to be met in order for the task to successfully be validated.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Meta ID meta.id
string
The full ID of the resource e.g. `resource.type.name`. This is computed from the full resource path:
Meta Type meta.type
string
The type of the resource. This taken from the type label of the resource definition.
Meta Name meta.name
string
The name of the resource. This taken from the name label of the resource definition.
Condition
A condition
is a partial validation for a task. Conditions can be used to split up bigger task into smaller pieces, allowing for more granular feedback to users.
Attributes
Name id
required
type: string
The id of the condition.
Description description
required
type: string
The description of the condition. This will be visible on the task in the frontend.
Configuration for the condition. This configuration will be used for all scripts within the condition. This overrides the configuration for the task.
The checks that need to be executed successfully in order for the condition to pass. Check scripts are triggered when a task is validated.
The solve scripts that are executed when skipping the condition.
The setup scripts that are executed when unlocking the condition.
The cleanup scripts that are executed when the condition is completed or skipped.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Script
A script that gets executed in the lifecycle of a lab. The script can be used to check the state of the lab, solve a challenge, setup the lab, or cleanup the lab, etc.
Attributes
Script script
required
type: string
The file location of the script to execute.
The configuration for the script. This overrides the configuration for the task or condition.
FailureMessage failure_message
type: string
The message to show if the check has failed.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Config
The configuration for scripts.
Attributes
The target resource to execute the script on.
User user
type: string
default: root
The user to execute the script as.
Group group
type: string
default: root
The group to execute the script as.
WorkingDirectory working_directory
type: string
default: /
The working directory to execute the script in.
Environment environment
type: map[string]string
The environment variables to set for the script.
Timeout timeout
type: int
default: 30
The timeout in seconds for the script to execute.
SuccessExitCodes success_exit_codes
type: []int
default: []int{0}
The exit codes that are considered successful.
FailureExitCodes failure_exit_codes
type: []int
default: []int{}
The exit codes that are considered expected failures. Any other failure codes will be considered errors.
ParallelExec configures wether conditions or scripts are executed in parallel.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
ParallelExec
Configures wether conditions or scripts are executed in parallel.
Attributes
Condition condition
type: bool
Condition configures wether conditions are executed in parallel.
Check check
type: bool
Check configures wether check scripts are executed in parallel.
Solve solve
type: bool
Solve configures wether solve scripts are executed in parallel.
Setup setup
type: bool
Setup configures wether setup scripts are executed in parallel.
Cleanup cleanup
type: bool
Cleanup configures wether cleanup scripts are executed in parallel.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Examples
Full Example
Last updated