Advertisement
Guest User

Untitled

a guest
Sep 5th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ---
  2. applications:
  3. - name: agencyDemo
  4. memory: 64M
  5. buildpack: staticfile_buildpack
  6. host: agencyDemo
  7.  
  8. resources:
  9. - name: app_sources
  10. type: git
  11. source:
  12. uri: https://github.com/smichard/CloudFoundryDemo
  13. branch: master
  14.  
  15. - name: staging_CloudFoundry
  16. type: cf
  17. source:
  18. api: {{pws_api}}
  19. username: {{pws_user}}
  20. password: {{pws_password}}
  21. organization: {{pws_org}}
  22. space: {{pws_space}}
  23. skip_cert_check: false
  24.  
  25. jobs:
  26. - name: deploy-website
  27. public: true
  28. serial: true
  29. plan:
  30. - get: app_sources
  31. trigger: true
  32. - put: staging_CloudFoundry
  33. params:
  34. manifest: app_sources/manifest.yml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement