Created
August 30, 2016 11:37
-
-
Save barthy1/678216a272c3b9f43ef518e353f32efe to your computer and use it in GitHub Desktop.
This file contains 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
--- | |
net_id: &net_id REPLACE | |
availability_zone: &availability_zone REPLACE | |
properties: &cloud_props | |
availability_zone: *availability_zone | |
api_key: REPLACE | |
auth_url: REPLACE | |
default_key_name: REPLACE | |
default_security_groups: | |
- REPLACE | |
ignore_server_availability_zone: true | |
net_id: *net_id | |
tenant: REPLACE | |
username: REPLACE | |
small_properties: &cloud_small_props | |
<< : *cloud_props | |
instance_type: m1.small | |
medium_properties: &cloud_mediun_props | |
<< : *cloud_props | |
instance_type: m1.medium | |
large_properties: &cloud_large_props | |
<< : *cloud_props | |
instance_type: m1.large | |
xlarge_properties: &cloud_xlarge_props | |
<< : *cloud_props | |
instance_type: m1.xlarge | |
networks: | |
- name: private-dynamic | |
type: dynamic | |
subnets: | |
- az: default | |
cloud_properties: {net_id: *net_id} | |
- name: private | |
type: manual | |
subnets: | |
- cloud_properties: | |
net_id: *net_id | |
az: default | |
dns: | |
- 8.8.8.8 | |
range: 172.16.1.0/24 | |
gateway: 172.16.1.1 | |
reserved: | |
- 172.16.1.2 - 172.16.1.90 | |
- cloud_properties: {} | |
name: concourse | |
az: default | |
type: vip | |
compilation: | |
workers: 6 | |
network: private-dynamic | |
az: default | |
reuse_compilation_vms: true | |
vm_type: large | |
vm_types: | |
- name: medium | |
cloud_properties: *cloud_medium_props | |
- name: small | |
cloud_properties: *cloud_small_props | |
- name: large | |
cloud_properties: *cloud_large_props | |
- name: xlarge | |
cloud_properties: *cloud_xlarge_props | |
azs: | |
- name: default | |
cloud_properties: {availability_zone: *availability_zone} | |
disk_types: | |
- name: database | |
disk_size: 10240 | |
- name: worker | |
disk_size: 120000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment