Skip to content

Instantly share code, notes, and snippets.

@benmoss
Created May 6, 2015 20:24
Show Gist options
  • Save benmoss/ca6e66a63bbbdc5e8748 to your computer and use it in GitHub Desktop.
Save benmoss/ca6e66a63bbbdc5e8748 to your computer and use it in GitHub Desktop.
custom manifest for a cf app
---
jobs:
- name: job-deploy-app
public: true
serial: true
plan:
- aggregate:
- get: resource-web-app
- get: manifest
- aggregate:
- put: resource-deploy-web-app
params:
manifest: manifest/manifest.yml
path: resource-web-app
resources:
- name: resource-web-app
type: git
source:
uri: https://github.com/cloudfoundry-community/simple-go-web-app.git
- name: resource-deploy-web-app
type: cf
source:
api: https://api.run.pivotal.io
username: {{cf-username}}
password: {{cf-password}}
organization: {{cf-organization}}
space: {{cf-space}}
skip_cert_check: false
- name: manifest
type: git
source:
uri: https://gist.github.com/benmoss/1e5bd55006d38809761a.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment