grim/convey

Bump the version for release
v0.14.0-alpha3
2018-02-20, Gary Kramlich
166a6d1979fa
Bump the version 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.
#
# HEY one
# HEY two
# HEY three
extends: base.yml
environment:
- PREFIX=HEY
tasks:
two:
type: docker/run
image: gliderlabs/alpine:edge
command: echo "${PREFIX} TWO"
three:
type: docker/run
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