grim/convey

closing merged branch
hostnames
2017-10-13, Gary Kramlich
33eae19fcbbe
closing merged branch
# 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]