grim/convey

closing merged branch
hostnames
2017-10-13, Gary Kramlich
33eae19fcbbe
closing merged branch
# 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:
image: gliderlabs/alpine:edge
command: echo one
two:
image: gliderlabs/alpine:edge
command: echo two
plans:
plan1:
stages:
- tasks:
- one
plan2:
stages:
- tasks:
- two
meta-plans:
everything:
plans:
- plan1
- plan2