grim/convey

Bump versions for release
v0.11.0
2017-10-15, Gary Kramlich
e2453a3e3189
Bump versions for release
# This plan extends another plan by overwriting one of the tasks
# and defining its own, then defining its own plan. The two are
# merged where anything in the extending file overwrites the base.
extends: base.yml
environment:
- PREFIX=HEY
tasks:
two:
image: gliderlabs/alpine:edge
command: echo "${PREFIX} TWO"
three:
image: gliderlabs/alpine:edge
command: echo "${PREFIX} three"
plans:
default:
stages:
# one is inherited from base.yml
# two is overridden from base.yml
# three is newly defined
- tasks: [one, two, three]