Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 680 Bytes

configuring_pipeline_deployment.md

File metadata and controls

31 lines (23 loc) · 680 Bytes

Configuring pipeline deployment

Global features

When setting a pipeline with travel agent you can toggle certain jobs or resources depending on a flag on your configuration. This can be done through global features.

travel-agent.yml:

---
name: PIPELINE_NAME
features:
  slack-notifications: true 
  ...

Environment features

when setting a pipeline with travel agent you can toggle certain steps for a env job depending on a flag on your configuration. This features will only apply to some environments.

travel-agent.yml:

---
envs:
...
- name: prod
  depends_on:
  - dev
  features:
    backup: true