bosh-deployer 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +1 -0
- data/lib/bosh-deployer/cli/commands/provision_stemcells.rb +6 -3
- data/lib/bosh-deployer/version.rb +1 -1
- data/spec/commands/provision_stemcells_spec.rb +30 -14
- data/spec/fixtures/manifests/bosh.yml +158 -0
- data/spec/fixtures/manifests/cf.yml +888 -185
- metadata +17 -25
@@ -1,209 +1,805 @@
|
|
1
|
+
compilation:
|
2
|
+
cloud_properties:
|
3
|
+
instance_type: m1.medium
|
4
|
+
network: cf1
|
5
|
+
reuse_compilation_vms: true
|
6
|
+
workers: 6
|
7
|
+
director_uuid:
|
8
|
+
jobs:
|
9
|
+
- default_networks:
|
10
|
+
- name: cf1
|
11
|
+
static_ips: null
|
12
|
+
instances: 1
|
13
|
+
name: ha_proxy_z1
|
14
|
+
networks:
|
15
|
+
- name: floating
|
16
|
+
static_ips:
|
17
|
+
- 10.0.1.144
|
18
|
+
- default:
|
19
|
+
- dns
|
20
|
+
- gateway
|
21
|
+
name: cf1
|
22
|
+
static_ips:
|
23
|
+
- 10.2.7.45
|
24
|
+
properties:
|
25
|
+
ha_proxy:
|
26
|
+
ssl_pem: '-----BEGIN PRIVATE KEY-----
|
27
|
+
|
28
|
+
-----END PRIVATE KEY-----
|
29
|
+
|
30
|
+
-----BEGIN CERTIFICATE-----
|
31
|
+
|
32
|
+
-----END CERTIFICATE-----'
|
33
|
+
networks:
|
34
|
+
apps: cf1
|
35
|
+
management: cf1
|
36
|
+
router:
|
37
|
+
servers:
|
38
|
+
z1:
|
39
|
+
- 10.2.7.25
|
40
|
+
z2: []
|
41
|
+
release: cf
|
42
|
+
resource_pool: router_z1
|
43
|
+
template: haproxy
|
44
|
+
- instances: 1
|
45
|
+
name: nats_z1
|
46
|
+
networks:
|
47
|
+
- name: cf1
|
48
|
+
static_ips:
|
49
|
+
- 10.2.7.21
|
50
|
+
properties:
|
51
|
+
networks:
|
52
|
+
apps: cf1
|
53
|
+
management: cf1
|
54
|
+
release: cf
|
55
|
+
resource_pool: medium_z1
|
56
|
+
templates:
|
57
|
+
- name: nats
|
58
|
+
- name: nats_stream_forwarder
|
59
|
+
- instances: 0
|
60
|
+
name: nats_z2
|
61
|
+
networks:
|
62
|
+
- name: cf2
|
63
|
+
static_ips: []
|
64
|
+
properties:
|
65
|
+
networks:
|
66
|
+
apps: cf2
|
67
|
+
management: cf2
|
68
|
+
release: cf
|
69
|
+
resource_pool: medium_z2
|
70
|
+
templates:
|
71
|
+
- name: nats
|
72
|
+
- name: nats_stream_forwarder
|
73
|
+
- instances: 1
|
74
|
+
name: logs_z1
|
75
|
+
networks:
|
76
|
+
- name: cf1
|
77
|
+
static_ips:
|
78
|
+
- 10.2.7.20
|
79
|
+
persistent_disk: 100000
|
80
|
+
properties:
|
81
|
+
networks:
|
82
|
+
apps: cf1
|
83
|
+
management: cf1
|
84
|
+
release: cf
|
85
|
+
resource_pool: medium_z1
|
86
|
+
template: syslog_aggregator
|
87
|
+
- instances: 0
|
88
|
+
name: logs_z2
|
89
|
+
networks:
|
90
|
+
- name: cf2
|
91
|
+
static_ips: []
|
92
|
+
persistent_disk: 100000
|
93
|
+
properties:
|
94
|
+
networks:
|
95
|
+
apps: cf2
|
96
|
+
management: cf2
|
97
|
+
release: cf
|
98
|
+
resource_pool: medium_z2
|
99
|
+
template: syslog_aggregator
|
100
|
+
- instances: 1
|
101
|
+
name: stats_z1
|
102
|
+
networks:
|
103
|
+
- name: cf1
|
104
|
+
properties:
|
105
|
+
networks:
|
106
|
+
apps: cf1
|
107
|
+
management: cf1
|
108
|
+
release: cf
|
109
|
+
resource_pool: small_z1
|
110
|
+
template: collector
|
111
|
+
- instances: 1
|
112
|
+
name: nfs_z1
|
113
|
+
networks:
|
114
|
+
- name: cf1
|
115
|
+
static_ips:
|
116
|
+
- 10.2.7.22
|
117
|
+
persistent_disk: 1020
|
118
|
+
release: cf
|
119
|
+
resource_pool: medium_z1
|
120
|
+
template: debian_nfs_server
|
121
|
+
- instances: 1
|
122
|
+
name: postgres_z1
|
123
|
+
networks:
|
124
|
+
- name: cf1
|
125
|
+
static_ips:
|
126
|
+
- 10.2.7.23
|
127
|
+
persistent_disk: 4096
|
128
|
+
release: cf
|
129
|
+
resource_pool: medium_z1
|
130
|
+
template: postgres
|
131
|
+
- instances: 1
|
132
|
+
name: uaa_z1
|
133
|
+
networks:
|
134
|
+
- name: cf1
|
135
|
+
properties:
|
136
|
+
networks:
|
137
|
+
apps: cf1
|
138
|
+
management: cf1
|
139
|
+
release: cf
|
140
|
+
resource_pool: medium_z1
|
141
|
+
template: uaa
|
142
|
+
- instances: 0
|
143
|
+
name: uaa_z2
|
144
|
+
networks:
|
145
|
+
- name: cf2
|
146
|
+
properties:
|
147
|
+
networks:
|
148
|
+
apps: cf2
|
149
|
+
management: cf2
|
150
|
+
release: cf
|
151
|
+
resource_pool: medium_z2
|
152
|
+
template: uaa
|
153
|
+
- instances: 1
|
154
|
+
name: login_z1
|
155
|
+
networks:
|
156
|
+
- name: cf1
|
157
|
+
properties:
|
158
|
+
networks:
|
159
|
+
apps: cf1
|
160
|
+
management: cf1
|
161
|
+
release: cf
|
162
|
+
resource_pool: medium_z1
|
163
|
+
template: login
|
164
|
+
- instances: 0
|
165
|
+
name: login_z2
|
166
|
+
networks:
|
167
|
+
- name: cf2
|
168
|
+
properties:
|
169
|
+
networks:
|
170
|
+
apps: cf2
|
171
|
+
management: cf2
|
172
|
+
release: cf
|
173
|
+
resource_pool: medium_z2
|
174
|
+
template: login
|
175
|
+
- instances: 1
|
176
|
+
name: api_z1
|
177
|
+
networks:
|
178
|
+
- name: cf1
|
179
|
+
persistent_disk: 0
|
180
|
+
properties:
|
181
|
+
loggregator_endpoint:
|
182
|
+
host: 10.2.7.44
|
183
|
+
networks:
|
184
|
+
apps: cf1
|
185
|
+
management: cf1
|
186
|
+
nfs_server:
|
187
|
+
address: 10.2.7.22
|
188
|
+
network: 10.2.6.0/23
|
189
|
+
share: null
|
190
|
+
release: cf
|
191
|
+
resource_pool: large_z1
|
192
|
+
templates:
|
193
|
+
- name: cloud_controller_ng
|
194
|
+
- instances: 0
|
195
|
+
name: api_z2
|
196
|
+
networks:
|
197
|
+
- name: cf2
|
198
|
+
persistent_disk: 0
|
199
|
+
properties:
|
200
|
+
loggregator_endpoint:
|
201
|
+
host: null
|
202
|
+
networks:
|
203
|
+
apps: cf2
|
204
|
+
management: cf2
|
205
|
+
nfs_server:
|
206
|
+
address: 10.2.7.22
|
207
|
+
network: 10.2.6.0/23
|
208
|
+
share: null
|
209
|
+
release: cf
|
210
|
+
resource_pool: large_z2
|
211
|
+
templates:
|
212
|
+
- name: cloud_controller_ng
|
213
|
+
- instances: 1
|
214
|
+
name: clock_global
|
215
|
+
networks:
|
216
|
+
- name: cf1
|
217
|
+
persistent_disk: 0
|
218
|
+
properties:
|
219
|
+
loggregator_endpoint:
|
220
|
+
host: 10.2.7.44
|
221
|
+
networks:
|
222
|
+
apps: cf1
|
223
|
+
management: cf1
|
224
|
+
release: cf
|
225
|
+
resource_pool: medium_z1
|
226
|
+
template: cloud_controller_clock
|
227
|
+
- instances: 1
|
228
|
+
name: api_worker_z1
|
229
|
+
networks:
|
230
|
+
- name: cf1
|
231
|
+
persistent_disk: 0
|
232
|
+
properties:
|
233
|
+
loggregator_endpoint:
|
234
|
+
host: 10.2.7.44
|
235
|
+
networks:
|
236
|
+
apps: cf1
|
237
|
+
management: cf1
|
238
|
+
nfs_server:
|
239
|
+
address: 10.2.7.22
|
240
|
+
network: 10.2.6.0/23
|
241
|
+
share: null
|
242
|
+
release: cf
|
243
|
+
resource_pool: small_z1
|
244
|
+
template: cloud_controller_worker
|
245
|
+
- instances: 0
|
246
|
+
name: api_worker_z2
|
247
|
+
networks:
|
248
|
+
- name: cf2
|
249
|
+
persistent_disk: 0
|
250
|
+
properties:
|
251
|
+
loggregator_endpoint:
|
252
|
+
host: null
|
253
|
+
networks:
|
254
|
+
apps: cf2
|
255
|
+
management: cf2
|
256
|
+
nfs_server:
|
257
|
+
address: 10.2.7.22
|
258
|
+
network: 10.2.6.0/23
|
259
|
+
share: null
|
260
|
+
release: cf
|
261
|
+
resource_pool: small_z2
|
262
|
+
template: cloud_controller_worker
|
263
|
+
- instances: 1
|
264
|
+
name: etcd_z1
|
265
|
+
networks:
|
266
|
+
- name: cf1
|
267
|
+
static_ips:
|
268
|
+
- 10.2.7.47
|
269
|
+
persistent_disk: 10024
|
270
|
+
properties:
|
271
|
+
networks:
|
272
|
+
apps: cf1
|
273
|
+
management: cf1
|
274
|
+
release: cf
|
275
|
+
resource_pool: medium_z1
|
276
|
+
templates:
|
277
|
+
- name: etcd
|
278
|
+
release: cf
|
279
|
+
- name: etcd_metrics_server
|
280
|
+
release: cf
|
281
|
+
- instances: 0
|
282
|
+
name: etcd_z2
|
283
|
+
networks:
|
284
|
+
- name: cf2
|
285
|
+
static_ips: []
|
286
|
+
persistent_disk: 10024
|
287
|
+
properties:
|
288
|
+
networks:
|
289
|
+
apps: cf2
|
290
|
+
management: cf2
|
291
|
+
release: cf
|
292
|
+
resource_pool: medium_z2
|
293
|
+
templates:
|
294
|
+
- name: etcd
|
295
|
+
release: cf
|
296
|
+
- name: etcd_metrics_server
|
297
|
+
release: cf
|
298
|
+
- instances: 1
|
299
|
+
name: hm9000_z1
|
300
|
+
networks:
|
301
|
+
- name: cf1
|
302
|
+
properties:
|
303
|
+
networks:
|
304
|
+
apps: cf1
|
305
|
+
management: cf1
|
306
|
+
release: cf
|
307
|
+
resource_pool: medium_z1
|
308
|
+
template: hm9000
|
309
|
+
- instances: 0
|
310
|
+
name: hm9000_z2
|
311
|
+
networks:
|
312
|
+
- name: cf2
|
313
|
+
properties:
|
314
|
+
networks:
|
315
|
+
apps: cf2
|
316
|
+
management: cf2
|
317
|
+
release: cf
|
318
|
+
resource_pool: medium_z2
|
319
|
+
template: hm9000
|
320
|
+
- instances: 6
|
321
|
+
name: runner_z1
|
322
|
+
networks:
|
323
|
+
- name: cf-dynamic
|
324
|
+
static_ips: null
|
325
|
+
properties:
|
326
|
+
loggregator_endpoint:
|
327
|
+
host: 10.2.7.44
|
328
|
+
networks:
|
329
|
+
apps: cf-dynamic
|
330
|
+
management: cf-dynamic
|
331
|
+
release: cf
|
332
|
+
resource_pool: runner_z1
|
333
|
+
templates:
|
334
|
+
- name: dea_next
|
335
|
+
- name: dea_logging_agent
|
336
|
+
update:
|
337
|
+
max_in_flight: 1
|
338
|
+
- instances: 0
|
339
|
+
name: runner_z2
|
340
|
+
networks:
|
341
|
+
- name: cf2
|
342
|
+
static_ips: null
|
343
|
+
properties:
|
344
|
+
loggregator_endpoint:
|
345
|
+
host: null
|
346
|
+
networks:
|
347
|
+
apps: cf2
|
348
|
+
management: cf2
|
349
|
+
release: cf
|
350
|
+
resource_pool: runner_z2
|
351
|
+
templates:
|
352
|
+
- name: dea_next
|
353
|
+
- name: dea_logging_agent
|
354
|
+
update:
|
355
|
+
max_in_flight: 1
|
356
|
+
- instances: 1
|
357
|
+
name: loggregator_z1
|
358
|
+
networks:
|
359
|
+
- name: cf1
|
360
|
+
static_ips:
|
361
|
+
- 10.2.7.41
|
362
|
+
properties:
|
363
|
+
networks:
|
364
|
+
apps: cf1
|
365
|
+
management: cf1
|
366
|
+
release: cf
|
367
|
+
resource_pool: medium_z1
|
368
|
+
template: loggregator
|
369
|
+
- instances: 0
|
370
|
+
name: loggregator_z2
|
371
|
+
networks:
|
372
|
+
- name: cf2
|
373
|
+
static_ips: []
|
374
|
+
properties:
|
375
|
+
networks:
|
376
|
+
apps: cf2
|
377
|
+
management: cf2
|
378
|
+
release: cf
|
379
|
+
resource_pool: medium_z2
|
380
|
+
template: loggregator
|
381
|
+
- instances: 1
|
382
|
+
name: loggregator_trafficcontroller_z1
|
383
|
+
networks:
|
384
|
+
- name: cf1
|
385
|
+
static_ips:
|
386
|
+
- 10.2.7.44
|
387
|
+
properties:
|
388
|
+
networks:
|
389
|
+
apps: cf1
|
390
|
+
management: cf1
|
391
|
+
traffic_controller:
|
392
|
+
zone: z1
|
393
|
+
release: cf
|
394
|
+
resource_pool: small_z1
|
395
|
+
template: loggregator_trafficcontroller
|
396
|
+
- instances: 0
|
397
|
+
name: loggregator_trafficcontroller_z2
|
398
|
+
networks:
|
399
|
+
- name: cf2
|
400
|
+
static_ips: []
|
401
|
+
properties:
|
402
|
+
networks:
|
403
|
+
apps: cf2
|
404
|
+
management: cf2
|
405
|
+
traffic_controller:
|
406
|
+
zone: z2
|
407
|
+
release: cf
|
408
|
+
resource_pool: small_z2
|
409
|
+
template: loggregator_trafficcontroller
|
410
|
+
- instances: 1
|
411
|
+
name: router_z1
|
412
|
+
networks:
|
413
|
+
- name: cf1
|
414
|
+
static_ips:
|
415
|
+
- 10.2.7.25
|
416
|
+
properties:
|
417
|
+
loggregator_endpoint:
|
418
|
+
host: 10.2.7.44
|
419
|
+
networks:
|
420
|
+
apps: cf1
|
421
|
+
management: cf1
|
422
|
+
resource_pool: router_z1
|
423
|
+
templates:
|
424
|
+
- name: gorouter
|
425
|
+
release: cf
|
426
|
+
- instances: 0
|
427
|
+
name: router_z2
|
428
|
+
networks:
|
429
|
+
- name: cf2
|
430
|
+
static_ips: []
|
431
|
+
properties:
|
432
|
+
loggregator_endpoint:
|
433
|
+
host: null
|
434
|
+
networks:
|
435
|
+
apps: cf2
|
436
|
+
management: cf2
|
437
|
+
resource_pool: router_z2
|
438
|
+
templates:
|
439
|
+
- name: gorouter
|
440
|
+
release: cf
|
441
|
+
- instances: 0
|
442
|
+
lifecycle: errand
|
443
|
+
name: acceptance_tests
|
444
|
+
networks:
|
445
|
+
- name: cf1
|
446
|
+
release: cf
|
447
|
+
resource_pool: small_errand
|
448
|
+
template: acceptance-tests
|
449
|
+
- instances: 0
|
450
|
+
lifecycle: errand
|
451
|
+
name: smoke_tests
|
452
|
+
networks:
|
453
|
+
- name: cf1
|
454
|
+
release: cf
|
455
|
+
resource_pool: small_errand
|
456
|
+
template: smoke-tests
|
1
457
|
meta:
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
458
|
+
environment: cf-staging
|
459
|
+
releases:
|
460
|
+
- name: cf
|
461
|
+
version: latest
|
6
462
|
stemcell:
|
7
|
-
name: bosh-openstack-kvm-ubuntu-lucid
|
463
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
8
464
|
version: latest
|
9
|
-
|
10
|
-
director_uuid: DELETE_ME
|
11
|
-
jobs:
|
12
|
-
ha_proxy_z1:
|
13
|
-
properties:
|
14
|
-
ha_proxy:
|
15
|
-
ssl_pem: '-----BEGIN PRIVATE KEY-----
|
16
|
-
|
17
|
-
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQC0qVqvF3LSEuPx
|
18
|
-
|
19
|
-
pm8Qr3nemnGlkZRbyiBcN3gzOQzfbZWU9BesKOgrGVldkKNVfKfcEMa8PiGFodp3
|
20
|
-
|
21
|
-
O451aX/rOvyAjYpq++gfRFbVJSuCvm8qTifc5R3mLe/OLdlr7J9J8PoCf4tw4Qs+
|
22
|
-
|
23
|
-
ND/9eaiCBgjzoMX1bJlKcYOo7VVnmRe7dhY1z8Kn7k4jHf/noFYXwI981NGDxyMz
|
24
|
-
|
25
|
-
MjuepjEt6zLDl2YKTmEGN1ibpMOxeJbmbkSwevkxDCUl2Ys++WemCqjLPsafxlr1
|
26
|
-
|
27
|
-
x+HzT9jyxWZsJAcNmcB6VMKLdYQPuB+fI6ckhCgzFp1skC2B5YAc7uUSVTs2HoIX
|
28
|
-
|
29
|
-
gl0FMyZJAgMBAAECggEBAJ9MMRzwZRsc8wbxxT8GK0SAFDN0sUdaa7xEYOVxqYsc
|
30
|
-
|
31
|
-
+mcz7+eqzkSqfmUFEzBe0Tg3RrVXZ4GIXLUDu7KFyvhks566r1F0O5HOVW5t7vbC
|
32
|
-
|
33
|
-
6gx4i6e4EuwSlz/Kp8sFAtNU+23WfuKSXLKFqeLcMhwsLBp+Ke8kyemdPAVo+AR2
|
34
|
-
|
35
|
-
urVh1Avip777hQHohpsTRuEhmT5UWN+Cn2CVKDMLUaYeTsA7eiZbQiQm6BXwDvgW
|
36
|
-
|
37
|
-
zNrSO3fIcJytc5T8o6gVYgYGbQE0V6/uv/BdDqAY8+JMq3I2f7hZ4FlZmKsgbaHU
|
38
|
-
|
39
|
-
zYJrlYC0GKAD/X5jFYqd7kvJxvHtaO87w407W0cIsm0CgYEA3ydPAfXCK4PkkWKt
|
40
|
-
|
41
|
-
dfUX8P9+c9p0xjhKwIPJsKZ34SgbCGaeIhugU9jZW9wxmbHEB1te0eUHp6LM3/mA
|
42
|
-
|
43
|
-
+CyZJGtOmuR0UrASZGK/svWWItdUAD0Jxa2TJjVnB1Cm148y0rJN2+USJU3WgCcd
|
44
|
-
|
45
|
-
xDeS0wt8BTGVZt+t9wwvo2v2ulMCgYEAz0DlZ+0uZYn6HfDiaCperDsbf5BCDl61
|
46
|
-
|
47
|
-
zLIXMvKZ5ePIFw34rKoHo28qqNfZmc3ZtQBFQlRsiM6O3lBo/5HVSoT+ZPQx1VI4
|
48
|
-
|
49
|
-
oFshCCXMFluooByseo34xNPuaLm4JMOHJFKX3vFPSFhYXLwTtc2h4IiPOmTulJu9
|
50
|
-
|
51
|
-
jCSVcaOsYXMCgYANSGy2hCdrqa0oTkRe+hjTupGPWdiLl/wzG2UdA7utBlMdm+Yb
|
52
|
-
|
53
|
-
x6Myenztr9yv9lnhyjmJquVawCELz/EyVI1FErIaHDEkXuCpYwtgHqgyKLkSTo/P
|
54
|
-
|
55
|
-
WXah1pnsYIud1yNCUWS7Cxaaa9ixxiJKdLhjoZJfSMVI21Wil/IZ+yoziwKBgA3R
|
56
|
-
|
57
|
-
0/o0FI3sv2LTtyUe/iUZ4+GDqwPuSM0XaviYuK5dm+/9nIFW7R92wC92BSp+UXAC
|
58
|
-
|
59
|
-
Tpv3qS0OKPSmA/pWrRRE/fmZVuFUlDYNHYy/iHZNMldK0i1x3g6x2wncqGy7JP3F
|
60
|
-
|
61
|
-
DB9vk8vNKEc2u1G6HnssX/CS3l3GbMM1hUmIkmwFAoGBAIqOFo0hDPznEhyc9BqP
|
62
|
-
|
63
|
-
P1g61aPwrTrnByHlDbqa7By5d3UXahYxG69HnPKKQL4GRhpI01D1etKU7LfMEKBt
|
64
|
-
|
65
|
-
sFbUXHkSRvJ6YyVk5VNdLJaqeUsiomPoyPDQQ9Va57LoPYdtWftVLrAwmdh8nlqC
|
66
|
-
|
67
|
-
nJSe2omvx1waiPI9xgq7KjHq
|
68
|
-
|
69
|
-
-----END PRIVATE KEY-----
|
70
|
-
|
71
|
-
-----BEGIN CERTIFICATE-----
|
72
|
-
|
73
|
-
MIIEBTCCAu2gAwIBAgIBADANBgkqhkiG9w0BAQUFADCBnDELMAkGA1UEBhMCVVMx
|
74
|
-
|
75
|
-
EzARBgNVBAgMCkNBTElGT1JOSUExFjAUBgNVBAcMDVNhbiBGcmFuY2lzY28xDDAK
|
76
|
-
|
77
|
-
BgNVBAoMA1dNRzELMAkGA1UECwwCSVQxHjAcBgNVBAMMFSouMTAuMjQxLjEuMTQ0
|
78
|
-
|
79
|
-
LnhpcC5pbzElMCMGCSqGSIb3DQEJARYWaW5mcmFzdHJ1Y3R1cmVAd21nLmNvbTAe
|
80
|
-
|
81
|
-
Fw0xNDA2MjQxNzUzMjVaFw0xNTA2MjQxNzUzMjVaMIGcMQswCQYDVQQGEwJVUzET
|
82
|
-
|
83
|
-
MBEGA1UECAwKQ0FMSUZPUk5JQTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEMMAoG
|
84
|
-
|
85
|
-
A1UECgwDV01HMQswCQYDVQQLDAJJVDEeMBwGA1UEAwwVKi4xMC4yNDEuMS4xNDQu
|
86
|
-
|
87
|
-
eGlwLmlvMSUwIwYJKoZIhvcNAQkBFhZpbmZyYXN0cnVjdHVyZUB3bWcuY29tMIIB
|
88
|
-
|
89
|
-
IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtKlarxdy0hLj8aZvEK953ppx
|
90
|
-
|
91
|
-
pZGUW8ogXDd4MzkM322VlPQXrCjoKxlZXZCjVXyn3BDGvD4hhaHadzuOdWl/6zr8
|
92
|
-
|
93
|
-
gI2KavvoH0RW1SUrgr5vKk4n3OUd5i3vzi3Za+yfSfD6An+LcOELPjQ//XmoggYI
|
94
|
-
|
95
|
-
86DF9WyZSnGDqO1VZ5kXu3YWNc/Cp+5OIx3/56BWF8CPfNTRg8cjMzI7nqYxLesy
|
96
|
-
|
97
|
-
w5dmCk5hBjdYm6TDsXiW5m5EsHr5MQwlJdmLPvlnpgqoyz7Gn8Za9cfh80/Y8sVm
|
98
|
-
|
99
|
-
bCQHDZnAelTCi3WED7gfnyOnJIQoMxadbJAtgeWAHO7lElU7Nh6CF4JdBTMmSQID
|
100
|
-
|
101
|
-
AQABo1AwTjAdBgNVHQ4EFgQUrxXnkZVYtbJSb1Xlsr051C6+KXowHwYDVR0jBBgw
|
102
|
-
|
103
|
-
FoAUrxXnkZVYtbJSb1Xlsr051C6+KXowDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0B
|
104
|
-
|
105
|
-
AQUFAAOCAQEAAKEcm18EsYuTWZwEzR7eLY/oWHaSFjmgZRUWozyepEdwoG1uVUyl
|
106
|
-
|
107
|
-
0JKjy/0NfQbavcf6/PC/gbzx7D7/h11r6RwoagJsjie43t7bbIPvWpsT9GMn0C3l
|
108
|
-
|
109
|
-
C8516VwEl3XZ9NNcMWJ2MWByZyIHc2NrnaKLyhSQwovFn4Xam+uQ+RemIxZ7M3/X
|
110
|
-
|
111
|
-
2yO5psb7UbhPPMXqGKiIGAKtCDUL6lYSiMILojVVmusjFechgPpHsj4FuVtthiSF
|
112
|
-
|
113
|
-
UWeNgWURGJ/dsZlPS6kvIldJysHAlcslwVuViIjqRc8TstxjUJYQ4LsLCbxwVUYl
|
114
|
-
|
115
|
-
HsC3XHyf7oHqw27el8ueOO/xGlz77FZdZw==
|
116
|
-
|
117
|
-
-----END CERTIFICATE-----'
|
118
|
-
instances: 1
|
119
|
-
networks:
|
120
|
-
cf1:
|
121
|
-
default: [ 'dns', 'gateway']
|
122
|
-
etcd_z1:
|
123
|
-
instances: 1
|
124
|
-
login_z2:
|
125
|
-
instances: 0
|
126
|
-
|
465
|
+
name: cf-staging
|
127
466
|
networks:
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
net_id:
|
467
|
+
- cloud_properties:
|
468
|
+
net_id: ef0bb667-cbaa-453b-b304-be33ef768976
|
469
|
+
name: floating
|
470
|
+
type: vip
|
471
|
+
- name: cf1
|
472
|
+
subnets:
|
473
|
+
- cloud_properties:
|
474
|
+
net_id: 2a88d3d9-bda5-47ef-ab04-2a3465fae898
|
136
475
|
security_groups:
|
137
476
|
- cf-public
|
138
477
|
- cf-private
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
478
|
+
gateway: 10.2.6.1
|
479
|
+
name: default_unused
|
480
|
+
range: 10.2.6.0/23
|
481
|
+
reserved:
|
482
|
+
- 10.2.6.2 - 10.240.7.19
|
483
|
+
static:
|
484
|
+
- 10.2.7.20 - 10.240.7.60
|
485
|
+
- cloud_properties:
|
486
|
+
net_id: 2a88d3d9-bda5-47ef-ab04-2a3465fae898
|
487
|
+
range: 10.2.6.0/23
|
488
|
+
security_groups:
|
489
|
+
- cf-public
|
490
|
+
- cf-private
|
491
|
+
name: cf-dynamic
|
492
|
+
type: dynamic
|
493
|
+
- name: cf2
|
494
|
+
subnets:
|
495
|
+
- cloud_properties:
|
496
|
+
net_id: 2a88d3d9-bda5-47ef-ab04-2a3465fae898
|
497
|
+
security_groups:
|
498
|
+
- cf-public
|
499
|
+
- cf-private
|
500
|
+
gateway: 10.2.6.1
|
501
|
+
name: default_unused
|
502
|
+
range: 10.2.6.0/23
|
503
|
+
reserved:
|
504
|
+
- 10.2.7.2 - 10.240.7.120
|
505
|
+
static:
|
506
|
+
- 10.2.7.121 - 10.240.7.250
|
507
|
+
type: manual
|
157
508
|
properties:
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
skip_cert_verify: true
|
162
|
-
domain: a_domain.xip.io
|
163
|
-
loggregator_endpoint:
|
164
|
-
shared_secret: 1p@ss4cf
|
509
|
+
acceptance_tests: null
|
510
|
+
app_domains:
|
511
|
+
- 10.0.1.144.xip.io
|
165
512
|
cc:
|
166
|
-
|
167
|
-
|
513
|
+
app_events:
|
514
|
+
cutoff_age_in_days: 31
|
515
|
+
app_usage_events:
|
516
|
+
cutoff_age_in_days: 31
|
517
|
+
audit_events:
|
518
|
+
cutoff_age_in_days: 31
|
519
|
+
billing_event_writing_enabled: true
|
520
|
+
broker_client_timeout_seconds: 70
|
521
|
+
buildpacks:
|
522
|
+
buildpack_directory_key: 10.0.1.144.xip.io-cc-buildpacks
|
523
|
+
cdn: null
|
524
|
+
fog_connection: null
|
525
|
+
bulk_api_password: password
|
526
|
+
client_max_body_size: 1536M
|
527
|
+
db_encryption_key: password
|
528
|
+
default_app_disk_in_mb: 1024
|
529
|
+
default_app_memory: 1024
|
530
|
+
default_buildpacks:
|
531
|
+
- name: java_buildpack
|
532
|
+
package: buildpack_java
|
533
|
+
- name: ruby_buildpack
|
534
|
+
package: buildpack_ruby
|
535
|
+
- name: nodejs_buildpack
|
536
|
+
package: buildpack_nodejs
|
537
|
+
- name: go_buildpack
|
538
|
+
package: buildpack_go
|
539
|
+
- name: python_buildpack
|
540
|
+
package: buildpack_python
|
541
|
+
default_quota_definition: default
|
542
|
+
development_mode: false
|
543
|
+
diego: false
|
544
|
+
disable_custom_buildpacks: false
|
545
|
+
droplets:
|
546
|
+
cdn: null
|
547
|
+
droplet_directory_key: 10.0.1.144.xip.io-cc-droplets
|
548
|
+
fog_connection: null
|
549
|
+
external_host: api
|
550
|
+
hm9000_noop: false
|
551
|
+
install_buildpacks:
|
552
|
+
- name: java_buildpack
|
553
|
+
package: buildpack_java
|
554
|
+
- name: ruby_buildpack
|
555
|
+
package: buildpack_ruby
|
556
|
+
- name: nodejs_buildpack
|
557
|
+
package: buildpack_nodejs
|
558
|
+
- name: go_buildpack
|
559
|
+
package: buildpack_go
|
560
|
+
- name: python_buildpack
|
561
|
+
package: buildpack_python
|
562
|
+
jobs:
|
563
|
+
app_bits_packer:
|
564
|
+
timeout_in_seconds: null
|
565
|
+
app_events_cleanup:
|
566
|
+
timeout_in_seconds: null
|
567
|
+
app_usage_events_cleanup:
|
568
|
+
timeout_in_seconds: null
|
569
|
+
blobstore_delete:
|
570
|
+
timeout_in_seconds: null
|
571
|
+
blobstore_upload:
|
572
|
+
timeout_in_seconds: null
|
573
|
+
droplet_deletion:
|
574
|
+
timeout_in_seconds: null
|
575
|
+
droplet_upload:
|
576
|
+
timeout_in_seconds: null
|
577
|
+
global:
|
578
|
+
timeout_in_seconds: 14400
|
579
|
+
model_deletion:
|
580
|
+
timeout_in_seconds: null
|
581
|
+
maximum_app_disk_in_mb: 2048
|
582
|
+
newrelic:
|
583
|
+
capture_params: false
|
584
|
+
developer_mode: false
|
585
|
+
environment_name: cf-staging
|
586
|
+
license_key: null
|
587
|
+
monitor_mode: false
|
588
|
+
transaction_tracer:
|
589
|
+
enabled: true
|
590
|
+
record_sql: obfuscated
|
591
|
+
packages:
|
592
|
+
app_package_directory_key: 10.0.1.144.xip.io-cc-packages
|
593
|
+
cdn: null
|
594
|
+
fog_connection: null
|
595
|
+
max_package_size: 1073741824
|
596
|
+
quota_definitions:
|
597
|
+
default:
|
598
|
+
memory_limit: 102
|
599
|
+
non_basic_services_allowed: true
|
600
|
+
total_routes: 1000
|
601
|
+
total_services: 100
|
602
|
+
resource_pool:
|
603
|
+
cdn: null
|
604
|
+
fog_connection: null
|
605
|
+
resource_directory_key: 10.0.1.144.xip.io-cc-resources
|
606
|
+
srv_api_uri: https://api.10.0.1.144.xip.io
|
607
|
+
stacks: null
|
168
608
|
staging_upload_password: upload-password
|
169
609
|
staging_upload_user: upload-user
|
170
|
-
|
610
|
+
system_buildpacks:
|
611
|
+
- name: java_buildpack
|
612
|
+
package: buildpack_java
|
613
|
+
- name: ruby_buildpack
|
614
|
+
package: buildpack_ruby
|
615
|
+
- name: nodejs_buildpack
|
616
|
+
package: buildpack_nodejs
|
617
|
+
- name: go_buildpack
|
618
|
+
package: buildpack_go
|
619
|
+
- name: python_buildpack
|
620
|
+
package: buildpack_python
|
621
|
+
tasks_disabled: false
|
622
|
+
user_buildpacks: []
|
623
|
+
ccdb:
|
624
|
+
address: 10.2.7.23
|
625
|
+
databases:
|
626
|
+
- name: ccdb
|
627
|
+
tag: cc
|
628
|
+
db_scheme: postgres
|
629
|
+
port: 5524
|
171
630
|
roles:
|
172
631
|
- name: ccadmin
|
173
632
|
password: ccadmin
|
174
633
|
tag: admin
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
634
|
+
collector:
|
635
|
+
datadog_api_key: ""
|
636
|
+
datadog_application_key: ""
|
637
|
+
deployment_name: cf-staging
|
638
|
+
use_datadog: true
|
639
|
+
use_tsdb: false
|
640
|
+
databases:
|
641
|
+
address: 10.2.7.23
|
642
|
+
databases:
|
643
|
+
- citext: true
|
644
|
+
name: ccdb
|
645
|
+
tag: cc
|
646
|
+
- citext: true
|
647
|
+
name: uaadb
|
648
|
+
tag: uaa
|
649
|
+
db_scheme: postgres
|
650
|
+
port: 5524
|
179
651
|
roles:
|
180
652
|
- name: ccadmin
|
181
653
|
password: ccadmin
|
182
|
-
|
183
|
-
roles:
|
654
|
+
tag: admin
|
184
655
|
- name: uaaadmin
|
185
656
|
password: uaaadmin
|
657
|
+
tag: admin
|
658
|
+
dea_next:
|
659
|
+
allow_networks: null
|
660
|
+
deny_networks:
|
661
|
+
- 169.254.0.0/16
|
662
|
+
directory_server_protocol: https
|
663
|
+
disk_mb: 10000
|
664
|
+
disk_overcommit_factor: 2
|
665
|
+
evacuation_bail_out_time_in_seconds: 600
|
666
|
+
instance_disk_inode_limit: 200000
|
667
|
+
kernel_network_tuning_enabled: true
|
668
|
+
logging_level: debug
|
669
|
+
memory_mb: 1024
|
670
|
+
memory_overcommit_factor: 3
|
671
|
+
staging_disk_inode_limit: 200000
|
672
|
+
staging_disk_limit_mb: 4096
|
673
|
+
staging_memory_limit_mb: 1024
|
674
|
+
description: Cloud Foundry sponsored by Pivotal
|
675
|
+
disk_quota_enabled: true
|
676
|
+
domain: 10.0.1.144.xip.io
|
677
|
+
etcd:
|
678
|
+
machines:
|
679
|
+
- 10.2.7.47
|
680
|
+
etcd_metrics_server:
|
681
|
+
nats:
|
682
|
+
machines:
|
683
|
+
- 10.2.7.21
|
684
|
+
password: nats
|
685
|
+
username: nats
|
686
|
+
logger_endpoint:
|
687
|
+
port: 4443
|
688
|
+
loggregator:
|
689
|
+
blacklisted_syslog_ranges: []
|
690
|
+
debug: false
|
691
|
+
maxRetainedLogMessages: 100
|
692
|
+
servers:
|
693
|
+
z1:
|
694
|
+
- 10.2.7.41
|
695
|
+
z2: []
|
696
|
+
loggregator_endpoint:
|
697
|
+
shared_secret: password
|
698
|
+
login:
|
699
|
+
analytics:
|
700
|
+
code: null
|
701
|
+
domain: null
|
702
|
+
brand: oss
|
703
|
+
catalina_opts: -Xmx768m -XX:MaxPermSize=256m
|
704
|
+
links:
|
705
|
+
home: https://console.10.0.1.144.xip.io
|
706
|
+
network: https://network.10.0.1.144.xip.io
|
707
|
+
passwd: https://console.10.0.1.144.xip.io/password_resets/new
|
708
|
+
signup: https://console.10.0.1.144.xip.io/register
|
709
|
+
signup-network: https://network.10.0.1.144.xip.io/registrations/new
|
710
|
+
protocol: http
|
711
|
+
smtp:
|
712
|
+
host: null
|
713
|
+
password: null
|
714
|
+
port: null
|
715
|
+
user: null
|
716
|
+
uaa_base: null
|
717
|
+
uaa_certificate: null
|
718
|
+
url: null
|
719
|
+
nats:
|
720
|
+
address: 10.2.7.21
|
721
|
+
debug: false
|
722
|
+
machines:
|
723
|
+
- 10.2.7.21
|
724
|
+
monitor_port: 0
|
725
|
+
password: nats
|
726
|
+
port: 4222
|
727
|
+
prof_port: 0
|
728
|
+
trace: false
|
729
|
+
user: nats
|
730
|
+
nfs_server:
|
731
|
+
address: 10.2.7.22
|
732
|
+
network: 10.2.6.0/23
|
733
|
+
opentsdb: null
|
734
|
+
request_timeout_in_seconds: 300
|
735
|
+
router:
|
736
|
+
status:
|
737
|
+
password: router
|
738
|
+
user: router
|
739
|
+
smoke_tests: null
|
740
|
+
ssl:
|
741
|
+
skip_cert_verify: true
|
742
|
+
support_address: http://support.cloudfoundry.com
|
743
|
+
syslog_aggregator: null
|
744
|
+
system_domain: 10.0.1.144.xip.io
|
745
|
+
system_domain_organization: null
|
186
746
|
uaa:
|
187
747
|
admin:
|
188
|
-
client_secret:
|
748
|
+
client_secret: password
|
189
749
|
batch:
|
190
|
-
password:
|
750
|
+
password: password
|
191
751
|
username: batch
|
752
|
+
catalina_opts: -Xmx768m -XX:MaxPermSize=256m
|
192
753
|
cc:
|
193
|
-
client_secret:
|
754
|
+
client_secret: password
|
194
755
|
clients:
|
195
756
|
app-direct:
|
196
|
-
|
757
|
+
access-token-validity: 1209600
|
758
|
+
authorities: app_direct_invoice.write
|
759
|
+
authorized-grant-types: authorization_code,client_credentials,password,refresh_token,implicit
|
760
|
+
override: true
|
761
|
+
redirect-uri: https://console.10.0.1.144.xip.io
|
762
|
+
refresh-token-validity: 1209600
|
763
|
+
secret: password
|
197
764
|
developer_console:
|
198
|
-
|
765
|
+
access-token-validity: 1209600
|
766
|
+
authorities: scim.write,scim.read,cloud_controller.read,cloud_controller.write,password.write,uaa.admin,uaa.resource,cloud_controller.admin,billing.admin
|
767
|
+
authorized-grant-types: authorization_code,client_credentials
|
768
|
+
override: true
|
769
|
+
redirect-uri: https://console.10.0.1.144.xip.io/oauth/callback
|
770
|
+
refresh-token-validity: 1209600
|
771
|
+
scope: openid,cloud_controller.read,cloud_controller.write,password.write,console.admin,console.support
|
772
|
+
secret: password
|
199
773
|
login:
|
200
|
-
|
774
|
+
authorities: oauth.login
|
775
|
+
authorized-grant-types: authorization_code,client_credentials,refresh_token
|
776
|
+
override: true
|
777
|
+
redirect-uri: https://login.10.0.1.144.xip.io
|
778
|
+
scope: openid,oauth.approvals
|
779
|
+
secret: password
|
201
780
|
servicesmgmt:
|
202
|
-
|
781
|
+
authorities: uaa.resource,oauth.service,clients.read,clients.write,clients.secret
|
782
|
+
authorized-grant-types: authorization_code,client_credentials,password,implicit
|
783
|
+
autoapprove: true
|
784
|
+
override: true
|
785
|
+
redirect-uri: http://servicesmgmt.10.0.1.144.xip.io/auth/cloudfoundry/callback
|
786
|
+
scope: openid,cloud_controller.read,cloud_controller.write
|
787
|
+
secret: password
|
203
788
|
space-mail:
|
204
|
-
|
789
|
+
access-token-validity: 1209600
|
790
|
+
authorities: scim.read,scim.write,cloud_controller.admin
|
791
|
+
authorized-grant-types: client_credentials
|
792
|
+
override: true
|
793
|
+
refresh-token-validity: 1209600
|
794
|
+
secret: password
|
205
795
|
support-services:
|
206
|
-
|
796
|
+
access-token-validity: 1209600
|
797
|
+
authorities: portal.users.read
|
798
|
+
authorized-grant-types: authorization_code,client_credentials
|
799
|
+
redirect-uri: http://support-signon.10.0.1.144.xip.io
|
800
|
+
refresh-token-validity: 1209600
|
801
|
+
scope: scim.write,scim.read,openid,cloud_controller.read,cloud_controller.write
|
802
|
+
secret: password
|
207
803
|
jwt:
|
208
804
|
signing_key: '-----BEGIN RSA PRIVATE KEY-----
|
209
805
|
|
@@ -249,19 +845,126 @@ properties:
|
|
249
845
|
-----END PUBLIC KEY-----
|
250
846
|
|
251
847
|
'
|
848
|
+
login:
|
849
|
+
client_secret: null
|
850
|
+
no_ssl: false
|
252
851
|
scim:
|
253
852
|
userids_enabled: false
|
254
853
|
users:
|
255
854
|
- admin|admin|scim.write,scim.read,openid,cloud_controller.admin,uaa.admin,password.write
|
256
|
-
- services|
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
855
|
+
- services|password|scim.write,scim.read,openid,cloud_controller.admin
|
856
|
+
url: https://uaa.10.0.1.144.xip.io
|
857
|
+
uaadb:
|
858
|
+
address: 10.2.7.23
|
859
|
+
databases:
|
860
|
+
- name: uaadb
|
861
|
+
tag: uaa
|
862
|
+
db_scheme: postgresql
|
863
|
+
port: 5524
|
864
|
+
roles:
|
865
|
+
- name: uaaadmin
|
866
|
+
password: uaaadmin
|
867
|
+
tag: admin
|
868
|
+
releases:
|
869
|
+
- name: cf
|
870
|
+
version: latest
|
871
|
+
resource_pools:
|
872
|
+
- cloud_properties:
|
873
|
+
instance_type: m1.small
|
874
|
+
name: small_z1
|
875
|
+
network: cf1
|
876
|
+
size: 3
|
877
|
+
stemcell:
|
878
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
879
|
+
version: latest
|
880
|
+
- cloud_properties:
|
881
|
+
instance_type: m1.small
|
882
|
+
name: small_z2
|
883
|
+
network: cf2
|
884
|
+
size: 0
|
885
|
+
stemcell:
|
886
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
887
|
+
version: latest
|
888
|
+
- cloud_properties:
|
889
|
+
instance_type: m1.medium
|
890
|
+
name: medium_z1
|
891
|
+
network: cf1
|
892
|
+
size: 10
|
893
|
+
stemcell:
|
894
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
895
|
+
version: latest
|
896
|
+
- cloud_properties:
|
897
|
+
instance_type: m1.medium
|
898
|
+
name: medium_z2
|
899
|
+
network: cf2
|
900
|
+
size: 0
|
901
|
+
stemcell:
|
902
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
903
|
+
version: latest
|
904
|
+
- cloud_properties:
|
905
|
+
instance_type: m1.large
|
906
|
+
name: large_z1
|
907
|
+
network: cf1
|
908
|
+
size: 1
|
909
|
+
stemcell:
|
910
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
911
|
+
version: latest
|
912
|
+
- cloud_properties:
|
913
|
+
instance_type: m1.large
|
914
|
+
name: large_z2
|
915
|
+
network: cf2
|
916
|
+
size: 0
|
917
|
+
stemcell:
|
918
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
919
|
+
version: latest
|
920
|
+
- cloud_properties:
|
921
|
+
instance_type: m1.xlarge
|
922
|
+
name: runner_z1
|
923
|
+
network: cf-dynamic
|
924
|
+
size: 6
|
925
|
+
stemcell:
|
926
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
927
|
+
version: latest
|
928
|
+
- cloud_properties:
|
929
|
+
instance_type: m1.large
|
930
|
+
name: runner_z2
|
931
|
+
network: cf2
|
932
|
+
size: 0
|
933
|
+
stemcell:
|
934
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
935
|
+
version: latest
|
936
|
+
- cloud_properties:
|
937
|
+
elbs:
|
938
|
+
- cfrouter
|
939
|
+
instance_type: m1.medium
|
940
|
+
name: router_z1
|
941
|
+
network: cf1
|
942
|
+
size: 2
|
943
|
+
stemcell:
|
944
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
945
|
+
version: latest
|
946
|
+
- cloud_properties:
|
947
|
+
elbs:
|
948
|
+
- cfrouter
|
949
|
+
instance_type: m1.medium
|
950
|
+
name: router_z2
|
951
|
+
network: cf2
|
952
|
+
size: 0
|
953
|
+
stemcell:
|
954
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
955
|
+
version: latest
|
956
|
+
- cloud_properties:
|
957
|
+
instance_type: m1.small
|
958
|
+
name: small_errand
|
959
|
+
network: cf1
|
960
|
+
size: 0
|
961
|
+
stemcell:
|
962
|
+
name: bosh-openstack-kvm-ubuntu-lucid
|
963
|
+
version: latest
|
964
|
+
update:
|
965
|
+
canaries: 1
|
966
|
+
canary_watch_time: 30000-600000
|
967
|
+
max_in_flight: 1
|
968
|
+
serial: true
|
969
|
+
update_watch_time: 5000-600000
|
267
970
|
|