grim/convey

37339c9211b8
Bust out a bunch of the yaml to yaml files
# This example creates two tasks and puts each into their own plan. Those
# plans are then grouped together into a meta-plan that is set as the default
# plan to run.
default-plan: everything
tasks:
one:
type: docker/run
image: gliderlabs/alpine:edge
command: echo one
two:
type: docker/run
image: gliderlabs/alpine:edge
command: echo two
plans:
plan1:
stages:
- tasks:
- one
plan2:
stages:
- tasks:
- two
meta-plans:
default:
plans:
- plan1
- plan2