forked from cloudfoundry/cf-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloud-config.yml
109 lines (104 loc) · 2.45 KB
/
cloud-config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
vm_types:
- name: minimal
cloud_properties:
instance_type: minimal
- name: small
cloud_properties:
instance_type: small
- name: small-highmem
cloud_properties:
instance_type: small-highmem
- name: small-50GB-ephemeral-disk
cloud_properties:
instance_type: small-50GB-ephemeral-disk
- name: small-highmem-100GB-ephemeral-disk
cloud_properties:
instance_type: small-highmem-100GB-ephemeral-disk
- name: medium
cloud_properties:
instance_type: medium
disk_types:
- name: 5GB
disk_size: 5000
- name: 10GB
disk_size: 10000
- name: 100GB
disk_size: 100000
vm_extensions:
- name: cf-router-network-properties
cloud_properties:
security_groups: [cf, cf-lb-https-router]
loadbalancer_pools:
- name: cf-https-pool
port: 443
- name: diego-ssh-proxy-network-properties
cloud_properties:
security_groups: [cf, cf-lb-ssh-diego-brain]
loadbalancer_pools:
- name: cf-ssh-pool
port: 2222
- name: cf-tcp-router-network-properties
cloud_properties:
security_groups: [cf, cf-lb-tcp-router]
loadbalancer_pools:
- name: cf-tcp-pool-1024
port: 1024
- name: cf-tcp-pool-1025
port: 1025
- name: cf-tcp-pool-1026
port: 1026
- name: cf-tcp-pool-1027
port: 1027
- name: cf-tcp-pool-1028
port: 1028
- name: cf-tcp-pool-1029
port: 1029
- name: cf-tcp-pool-1030
port: 1030
- name: cf-tcp-pool-1031
port: 1031
- name: cf-tcp-pool-1032
port: 1032
- name: cf-tcp-pool-1033
port: 1033
azs:
- name: z1
cloud_properties:
availability_zone: ((availability_zone1))
- name: z2
cloud_properties:
availability_zone: ((availability_zone2))
- name: z3
cloud_properties:
availability_zone: ((availability_zone3))
networks:
- name: default
type: manual
subnets:
- az: z1
range: 10.0.16.0/20
reserved: [10.0.16.2-10.0.16.50]
gateway: 10.0.16.1
cloud_properties:
net_id: ((network_id1))
security_groups: [cf]
- az: z2
range: 10.0.32.0/20
reserved: [10.0.32.2-10.0.32.50]
gateway: 10.0.32.1
cloud_properties:
net_id: ((network_id2))
security_groups: [cf]
- az: z3
range: 10.0.48.0/20
reserved: [10.0.48.2-10.0.48.50]
gateway: 10.0.48.1
cloud_properties:
net_id: ((network_id3))
security_groups: [cf]
compilation:
workers: 5
reuse_compilation_vms: true
vm_type: minimal
network: default
az: z1