tree: f088739c42ded56fb71e3b676debfed7f2a4ded1 [path history] [tgz]
  1. index.rst
  2. python.md
  3. README.md
docs/liminal/tasks/README.md

Tasks

task is the definition of a specific step in your pipeline, and is part of the tasks list in your pipeline definition.

For fully detailed information on pipelines see: pipelines.

  - task: my_python_task
    image: myorg/myrepo:mypythonapp
    cmd: python -u my_module.py
    env_vars:
      env: {{env}}
      fizz: buzz

A task is defined by the following attributes:

task attributes

task: name of your task (must be made of alphanumeric, dash and/or underscore characters only).

type: type of the task. Examples of available task types are: python and more..

Different task types require their own additional configuration. For example, python task requires image to be configured.

task types

  1. python