grim/convey

Bump the version for release
v0.11.1
2017-10-21, Gary Kramlich
00923ff4e245
Bump the version for release
# 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