tree: 806e2407a565041b10d2ebf7c9fd42368014f5fc [path history] [tgz]
  1. create_cloudformation_stack.md
  2. delete_cloudformation_stack.md
  3. index.rst
  4. python.md
  5. README.md
  6. spark.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
  2. spark
  3. create_cloudformation_stack
  4. delete_cloudformation_stack