Last active
August 9, 2016 10:03
-
-
Save antonsoroko/3be4c70b38f846b1d79eca7192a5ab58 to your computer and use it in GitHub Desktop.
manifest.yml for http://bosh.io/docs/create-release.html Please notice that this manifest is for OpenStack! See BOSH Deployment Manifest (http://bosh.io/docs/deployment-manifest.html) for more information about other IaaS.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: bosh-tutorial-deployment | |
| director_uuid: REPLACE_WITH_DIRECTOR_UUID | |
| releases: | |
| - {name: ardo_app, version: latest} | |
| resource_pools: | |
| - name: vms | |
| network: default | |
| stemcell: | |
| name: bosh-openstack-kvm-ubuntu-trusty-go_agent | |
| version: 3215.4 | |
| cloud_properties: | |
| instance_type: m1.small | |
| networks: | |
| - name: default | |
| type: dynamic | |
| cloud_properties: | |
| net_id: REPLACE_WITH_YOUR_SUBNET_ID | |
| security_groups: | |
| - REPLACE_WITH_YOUR_SG | |
| compilation: | |
| workers: 1 | |
| network: default | |
| reuse_compilation_vms: true | |
| cloud_properties: | |
| instance_type: m1.small | |
| update: | |
| canaries: 1 | |
| max_in_flight: 3 | |
| canary_watch_time: 15000-30000 | |
| update_watch_time: 15000-300000 | |
| jobs: | |
| - name: bg_worker | |
| instances: 1 | |
| templates: | |
| - {name: bg_worker, release: ardo_app} | |
| resource_pool: vms | |
| networks: | |
| - name: default | |
| - name: web_ui | |
| instances: 1 | |
| templates: | |
| - {name: web_ui, release: ardo_app} | |
| resource_pool: vms | |
| networks: | |
| - name: default | |
| properties: | |
| web_ui: | |
| port: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment