Skip to content

Instantly share code, notes, and snippets.

@mboldt
Created December 15, 2016 15:16
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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