Skip to content

Instantly share code, notes, and snippets.

@mboldt
Created December 15, 2016 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mboldt/494ec49878a1d9558ec13e203ec74811 to your computer and use it in GitHub Desktop.
Save mboldt/494ec49878a1d9558ec13e203ec74811 to your computer and use it in GitHub Desktop.
Learning bosh links
# jobs/echo_job/spec
---
name: echo_job
# ...
consumes:
- name: other_guy_in
type: other_guy_type
# jobs/provider/spec
---
name: provider
# ...
properties:
foo:
description: Testing links
default: <Undefined in provider job>
provides:
- name: other_guy_out
type: other_guy_type
properties:
- foo
# deploy.yml
# ...
instance_groups:
- name: provider_ig
# ...
jobs:
- name: provider
release: echo_release
provides:
other_guy_out:
as: other_guy
properties:
foo: bar
- name: echo_ig
# ...
jobs:
- name: echo_job
release: echo_release
consumes:
other_guy_in:
from: other_guy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment