forked from cloudfoundry/bosh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline.yml
844 lines (769 loc) · 22.5 KB
/
pipeline.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
---
groups:
- name: bosh
jobs:
- unit-2.4
- unit-2.4-mysql
- unit-2.4-postgres
- unit-2.4-rds
- blobstore-client-integration
- integration-postgres-gocli-sha2
- integration-mysql-gocli-sha1
- load-tests-postgres
- load-tests-mysql
- legacy-load-tests-postgres
- legacy-load-tests-mysql
- fuzz-tests
- candidate-release
- finalize-bosh-release
- bats-centos
- bats-ubuntu
- brats-ubuntu
- upgrade-tests
- blobstore-performance
- name: mysql
jobs:
- unit-2.4-mysql
- unit-2.4-rds
- integration-mysql-gocli-sha1
- name: postgres
jobs:
- unit-2.4-postgres
- unit-2.4-rds
- name: finalize
jobs:
- finalize-bosh-release
shared:
- &deploy-director
task: deploy-director
tags: [vsphere-v5.1]
file: bosh-src/ci/bats/tasks/deploy-director.yml
params:
BAT_INFRASTRUCTURE: vsphere
BOSH_CLIENT: {{stemcell-test-director-username}}
BOSH_CLIENT_SECRET: {{stemcell-test-director-password}}
BOSH_VSPHERE_VCENTER: {{vcenter-ip}}
BOSH_VSPHERE_VCENTER_USER: {{vcenter-user}}
BOSH_VSPHERE_VCENTER_PASSWORD: {{vcenter-password}}
BOSH_VSPHERE_VERSION: {{vsphere-version}}
BOSH_VSPHERE_VCENTER_DC: {{vcenter-dc}}
BOSH_VSPHERE_VCENTER_CLUSTER: {{vcenter-cluster}}
BOSH_VSPHERE_VCENTER_DATASTORE: {{vcenter-datastore}}
BOSH_VSPHERE_VCENTER_VLAN: {{vcenter-vlan}}
BOSH_VSPHERE_VCENTER_VM_FOLDER: {{vcenter-vm-folder}}
BOSH_VSPHERE_VCENTER_TEMPLATE_FOLDER: {{vcenter-template-folder}}
BOSH_VSPHERE_VCENTER_DISK_PATH: {{vcenter-disk-path}}
- &prepare-bats-config
task: prepare-bats
tags: [vsphere-v5.1]
file: bosh-src/ci/bats/iaas/vsphere/prepare-bats-config.yml
- &run-bats
task: run-bats
tags: [vsphere-v5.1]
file: bats/ci/tasks/run-bats.yml
- &teardown
task: teardown
tags: [vsphere-v5.1]
file: bosh-src/ci/bats/tasks/destroy-director.yml
- &slack-alert
put: slack-alert
params:
channel: {{slack_channel_name}}
icon_url: http://cl.ly/image/3e1h0H3H2s0P/concourse-logo.png
text: {{slack_failure_message}}
jobs:
- name: unit-2.4
public: true
serial: true
build_logs_to_retain: 250
plan:
- { get: bosh-src, trigger: true }
- task: test
file: bosh-src/ci/tasks/test-unit.yml
params:
RUBY_VERSION: 2.4.2
DB: sqlite
on_failure:
<<: *slack-alert
- name: unit-2.4-mysql
public: true
serial: true
build_logs_to_retain: 250
plan:
- { get: bosh-src, trigger: true }
- aggregate:
- task: test-mysql-5.5
privileged: true
config:
platform: linux
image_resource:
type: docker-image
source:
repository: bosh/main-mysql-5.5
inputs:
- name: bosh-src
run:
path: bosh-src/ci/tasks/test-unit.sh
params:
RUBY_VERSION: 2.4.2
DB: mysql
on_failure:
<<: *slack-alert
- task: test-mysql-5.6
privileged: true
config:
platform: linux
image_resource:
type: docker-image
source:
repository: bosh/main-mysql-5.6
inputs:
- name: bosh-src
run:
path: bosh-src/ci/tasks/test-unit.sh
params:
RUBY_VERSION: 2.4.2
DB: mysql
on_failure:
<<: *slack-alert
- task: test-mysql-5.7
privileged: true
config:
platform: linux
image_resource:
type: docker-image
source:
repository: bosh/main-mysql-5.7
inputs:
- name: bosh-src
run:
path: bosh-src/ci/tasks/test-unit.sh
params:
RUBY_VERSION: 2.4.2
DB: mysql
on_failure:
<<: *slack-alert
- name: unit-2.4-postgres
public: true
serial: true
build_logs_to_retain: 250
plan:
- { get: bosh-src, trigger: true }
- aggregate:
- task: test-postgres-9.3
privileged: true
config:
platform: linux
image_resource:
type: docker-image
source:
repository: bosh/main-postgres-9.3
inputs:
- name: bosh-src
run:
path: bosh-src/ci/tasks/test-unit.sh
params:
RUBY_VERSION: 2.4.2
DB: postgresql
DB_VERSION: 9.3
on_failure:
<<: *slack-alert
- task: test-postgres-9.4
privileged: true
config:
platform: linux
image_resource:
type: docker-image
source:
repository: bosh/main-postgres-9.4
inputs:
- name: bosh-src
run:
path: bosh-src/ci/tasks/test-unit.sh
params:
RUBY_VERSION: 2.4.2
DB: postgresql
DB_VERSION: 9.4
on_failure:
<<: *slack-alert
- task: test-postgres-9.5
privileged: true
config:
platform: linux
image_resource:
type: docker-image
source:
repository: bosh/main-postgres-9.5
inputs:
- name: bosh-src
run:
path: bosh-src/ci/tasks/test-unit.sh
params:
RUBY_VERSION: 2.4.2
DB: postgresql
DB_VERSION: 9.5
on_failure:
<<: *slack-alert
- task: test-postgres-9.6
privileged: true
config:
platform: linux
image_resource:
type: docker-image
source:
repository: bosh/main-postgres-9.6
inputs:
- name: bosh-src
run:
path: bosh-src/ci/tasks/test-unit.sh
params:
RUBY_VERSION: 2.4.2
DB: postgresql
DB_VERSION: 9.6
on_failure:
<<: *slack-alert
- name: unit-2.4-rds
public: true
serial: true
build_logs_to_retain: 250
plan:
- { get: bosh-src, trigger: true }
- aggregate:
- task: test-mysql-rds
privileged: true
file: bosh-src/ci/tasks/test-unit-remote-db.yml
params:
RUBY_VERSION: 2.4.2
DB: mysql
DB_HOST: {{mysql-rds-host}}
DB_USER: {{mysql-rds-user}}
DB_PASSWORD: {{mysql-rds-password}}
AWS_ACCESS_KEY_ID: {{mysql-rds-aws-access-key-id}}
AWS_SECRET_ACCESS_KEY: {{mysql-rds-aws-secret-access-key}}
AWS_REGION: {{mysql-rds-aws-region}}
RDS_MYSQL_DB_IDENTIFIER: {{mysql-rds-db-identifier}}
- task: test-postgresql-rds
privileged: true
file: bosh-src/ci/tasks/test-unit-remote-db.yml
params:
RUBY_VERSION: 2.4.2
DB: postgresql
DB_HOST: {{postgresql-rds-host}}
DB_USER: {{postgresql-rds-user}}
DB_PASSWORD: {{postgresql-rds-password}}
on_failure:
<<: *slack-alert
- name: blobstore-client-integration
public: true
serial: true
build_logs_to_retain: 250
plan:
- { get: bosh-src, trigger: true }
- task: test-s3
file: bosh-src/ci/tasks/test-s3-blobstore-client-integration.yml
params:
access_key_id: {{blobstore_client_aws_access_key_id}}
secret_access_key: {{blobstore_client_aws_secret_access_key}}
s3_region: {{blobstore_client_aws_s3_region}}
s3_host: {{blobstore_client_aws_s3_host}}
run_aws_tests: "Not null"
- task: test-local
file: bosh-src/ci/tasks/test-local-blobstore-client-integration.yml
- task: test-dav
file: bosh-src/ci/tasks/test-dav-blobstore-client-integration.yml
- task: test-gcs
file: bosh-src/ci/tasks/test-gcs-blobstore-client-integration.yml
params:
google_project: {{blobstore_client_google_project}}
google_json_key_data: {{blobstore_client_google_json_key_data}}
- name: blobstore-performance
public: true
serial: true
build_logs_to_retain: 250
plan:
- { get: bosh-src, trigger: true }
- { get: davcli, trigger: true }
- task: test
privileged: true
file: bosh-src/ci/tasks/test-blobstore-load.yml
on_failure:
<<: *slack-alert
- name: integration-postgres-gocli-sha2
public: true
serial: true
build_logs_to_retain: 250
plan:
- aggregate:
- get: bosh-src
trigger: true
- get: bosh-cli
trigger: true
- get: bosh-agent
trigger: true
- aggregate:
- task: test-group-1
privileged: true
file: bosh-src/ci/tasks/test-integration-gocli.yml
tags: ["bosh-integration-7"]
params:
DB: postgresql
RUBY_VERSION: 2.4.2
NUM_GROUPS: 24
GROUP: 1,4,7,10,13,16,19,22
SHA2_MODE: true
- task: test-group-2
privileged: true
file: bosh-src/ci/tasks/test-integration-gocli.yml
tags: ["bosh-integration-8"]
params:
DB: postgresql
RUBY_VERSION: 2.4.2
NUM_GROUPS: 24
GROUP: 2,5,8,11,14,17,20,23
SHA2_MODE: true
- task: test-group-3
privileged: true
file: bosh-src/ci/tasks/test-integration-gocli.yml
tags: ["bosh-integration-9"]
params:
DB: postgresql
RUBY_VERSION: 2.4.2
NUM_GROUPS: 24
GROUP: 3,6,9,12,15,18,21,24
SHA2_MODE: true
on_failure:
<<: *slack-alert
- name: integration-mysql-gocli-sha1
public: true
serial: true
build_logs_to_retain: 250
plan:
- aggregate:
- get: bosh-src
trigger: true
- get: bosh-cli
trigger: true
- get: bosh-agent
trigger: true
- aggregate:
- task: test-group-1
privileged: true
file: bosh-src/ci/tasks/test-integration-gocli.yml
tags: ["bosh-integration-4"]
params:
DB: mysql
RUBY_VERSION: 2.4.2
NUM_GROUPS: 24
GROUP: 1,4,7,10,13,16,19,22
- task: test-group-2
privileged: true
file: bosh-src/ci/tasks/test-integration-gocli.yml
tags: ["bosh-integration-5"]
params:
DB: mysql
RUBY_VERSION: 2.4.2
NUM_GROUPS: 24
GROUP: 2,5,8,11,14,17,20,23
- task: test-group-3
privileged: true
file: bosh-src/ci/tasks/test-integration-gocli.yml
tags: ["bosh-integration-6"]
params:
DB: mysql
RUBY_VERSION: 2.4.2
NUM_GROUPS: 24
GROUP: 3,6,9,12,15,18,21,24
on_failure:
<<: *slack-alert
- name: upgrade-tests
public: true
serial: true
build_logs_to_retain: 250
plan:
- aggregate:
- get: bosh-src
trigger: true
- get: bosh-cli
trigger: true
- get: bosh-agent
trigger: true
- aggregate:
- task: upgrade-with-postgres
privileged: true
file: bosh-src/ci/tasks/test-upgrade.yml
tags: ["bosh-integration"]
params:
DB: postgresql
RUBY_VERSION: 2.4.2
- task: upgrade-with-mysql
privileged: true
file: bosh-src/ci/tasks/test-upgrade.yml
tags: ["bosh-integration"]
params:
DB: mysql
RUBY_VERSION: 2.4.2
- name: load-tests-postgres
public: true
serial: true
serial_groups: ["load_tests"] # heavy footprint! run one at a time.
build_logs_to_retain: 250
plan:
- { get: load-tests-interval, trigger: true }
- { get: bosh-load-tests-workspace }
- { get: warden-ubuntu-trusty }
- { get: bosh-candidate-release-tarballs }
- { get: bosh-cli }
- task: test
privileged: true
file: bosh-load-tests-workspace/ci/tasks/test.yml
tags: ["bosh-load-tests"]
input_mapping:
bosh-candidate-stemcell: warden-ubuntu-trusty
bosh-candidate-release: bosh-candidate-release-tarballs
params:
DB: postgresql
LEGACY: false
on_failure:
<<: *slack-alert
- name: legacy-load-tests-postgres
public: true
serial: true
serial_groups: ["load_tests"] # heavy footprint! run one at a time.
build_logs_to_retain: 250
plan:
- { get: load-tests-interval, trigger: true }
- { get: bosh-load-tests-workspace }
- { get: bosh-cli }
- { get: bosh-candidate-release-tarballs }
- { get: warden-ubuntu-trusty }
- task: test
privileged: true
file: bosh-load-tests-workspace/ci/tasks/test.yml
tags: ["bosh-load-tests"]
input_mapping:
bosh-candidate-stemcell: warden-ubuntu-trusty
bosh-candidate-release: bosh-candidate-release-tarballs
params:
DB: postgresql
LEGACY: true
on_failure:
<<: *slack-alert
- name: load-tests-mysql
public: true
serial: true
serial_groups: ["load_tests"] # heavy footprint! run one at a time.
build_logs_to_retain: 250
plan:
- { get: load-tests-interval, trigger: true }
- { get: bosh-load-tests-workspace }
- { get: bosh-cli }
- { get: bosh-candidate-release-tarballs }
- { get: warden-ubuntu-trusty }
- task: test
privileged: true
file: bosh-load-tests-workspace/ci/tasks/test.yml
tags: ["bosh-load-tests"]
input_mapping:
bosh-candidate-stemcell: warden-ubuntu-trusty
bosh-candidate-release: bosh-candidate-release-tarballs
params:
DB: mysql
LEGACY: false
on_failure:
<<: *slack-alert
- name: legacy-load-tests-mysql
public: true
serial: true
serial_groups: ["load_tests"] # heavy footprint! run one at a time.
build_logs_to_retain: 250
plan:
- { get: load-tests-interval, trigger: true }
- { get: bosh-load-tests-workspace }
- { get: bosh-cli }
- { get: bosh-candidate-release-tarballs }
- { get: warden-ubuntu-trusty }
- task: test
privileged: true
file: bosh-load-tests-workspace/ci/tasks/test.yml
tags: ["bosh-load-tests"]
input_mapping:
bosh-candidate-stemcell: warden-ubuntu-trusty
bosh-candidate-release: bosh-candidate-release-tarballs
params:
DB: mysql
LEGACY: true
on_failure:
<<: *slack-alert
- name: fuzz-tests
public: true
serial: true
build_logs_to_retain: 2500
plan:
- { get: fuzz-interval-trigger, trigger: true }
- { get: bosh-src, trigger: true }
- { get: bosh-agent }
- { get: bosh-fuzz-tests }
- { get: bosh-cli }
- task: test
privileged: true
file: bosh-fuzz-tests/ci/tasks/test.yml
tags: ["bosh-integration"]
params:
BOSH_SRC_PATH: bosh-src/src
RUBY_VERSION: 2.4.2
on_failure:
<<: *slack-alert
- name: candidate-release
plan:
- get: bosh-src
trigger: true
passed:
- unit-2.4
- unit-2.4-mysql
- unit-2.4-postgres
- integration-mysql-gocli-sha1
- integration-postgres-gocli-sha2
- blobstore-client-integration
- fuzz-tests
- upgrade-tests
- blobstore-performance
- get: bosh-cli
- get: candidate-version
params:
bump: major
- task: make
file: bosh-src/ci/tasks/make-candidate.yml
- put: bosh-candidate-release-tarballs
params:
file: "release/bosh-dev-release.tgz"
- name: bats-centos
serial: true
plan:
- do:
- aggregate:
- get: bosh-release
resource: bosh-candidate-release-tarballs
trigger: true
passed:
- candidate-release
- get: cpi-release
- get: stemcell
resource: vsphere-esxi-centos-7
- get: bosh-cli
- get: bats
- get: bosh-deployment
- get: bosh-src
passed:
- candidate-release
- put: environment
params:
acquire: true
- do:
- <<: *deploy-director
- <<: *prepare-bats-config
params:
STEMCELL_NAME: bosh-vsphere-esxi-centos-7-go_agent
- <<: *run-bats
ensure:
do:
- <<: *teardown
ensure:
do:
- {put: environment, params: {release: environment}}
- name: bats-ubuntu
serial: true
plan:
- do:
- aggregate:
- get: bosh-release
resource: bosh-candidate-release-tarballs
trigger: true
passed:
- candidate-release
- get: cpi-release
- get: stemcell
resource: vsphere-esxi-ubuntu-trusty
- get: bosh-cli
- get: bats
- get: bosh-deployment
- get: bosh-src
passed:
- candidate-release
- put: environment
params:
acquire: true
- do:
- <<: *deploy-director
- <<: *prepare-bats-config
params:
STEMCELL_NAME: bosh-vsphere-esxi-ubuntu-trusty-go_agent
- <<: *run-bats
ensure:
do:
- <<: *teardown
ensure:
do:
- {put: environment, params: {release: environment}}
- name: brats-ubuntu
serial: true
plan:
- do:
- aggregate:
- get: bosh-src
passed:
- candidate-release
- get: bosh-dns-release
- get: candidate-warden-ubuntu-stemcell
- get: bosh-release
resource: bosh-candidate-release-tarballs
trigger: true
passed:
- candidate-release
- task: test-brats
file: bosh-src/ci/tasks/test-brats.yml
tags: ["worker-brats"]
privileged: true
input_mapping:
bosh-dev-release: bosh-release
- name: finalize-bosh-release
serial: true
plan:
- aggregate:
- get: bosh-src-master
resource: bosh-src
passed:
- bats-centos
- bats-ubuntu
- get: bosh-dev-release
resource: bosh-candidate-release-tarballs
passed:
- bats-centos
- bats-ubuntu
- get: bosh-cli
- get: candidate-version
params:
bump: major
- task: promote-release
file: bosh-src-master/ci/tasks/finalize-bosh-release.yml
params:
BLOBSTORE_ACCESS_KEY_ID: {{bosh_release_access_key_id}}
BLOBSTORE_SECRET_ACCESS_KEY: {{bosh_release_secret_access_key}}
- put: candidate-version
params:
file: bumped-candidate-version/number
- put: bosh-master
params:
repository: bosh-src-with-final
tag: /tmp/build/put/bosh-src-with-final-tag/tag-name
annotate: /tmp/build/put/bosh-src-with-final-tag/annotate-msg
resources:
- name: bosh-src
type: git
source:
uri: {{bosh_src_url}}
branch: master
private_key: {{github_deployment_key}}
- name: candidate-version
type: semver
source:
bucket: {{candidate_release_bucket}}
key: version
access_key_id: {{candidate_release_access_key_id}}
secret_access_key: {{candidate_release_secret_access_key}}
- name: bosh-candidate-release-tarballs
type: s3
source:
bucket: {{candidate_release_bucket}}
access_key_id: {{candidate_release_access_key_id}}
secret_access_key: {{candidate_release_secret_access_key}}
versioned_file: "bosh-dev-release.tgz"
- name: davcli
type: s3
source:
regexp: davcli-(.*)-linux-amd64
bucket: davcli
region_name: us-east-1
- name: bosh-fuzz-tests
type: git
source:
uri: https://github.com/cloudfoundry-incubator/bosh-fuzz-tests.git
branch: master
- name: bosh-load-tests-workspace
type: git
source:
uri: https://github.com/cloudfoundry-incubator/bosh-load-tests-workspace
branch: master
- name: bosh-master
type: git
source:
uri: {{bosh_src_url}}
branch: master
private_key: {{github_deployment_key}}
- name: fuzz-interval-trigger
type: time
source:
interval: 15m
- name: load-tests-interval
type: time
source:
interval: 1h
- name: slack-alert
type: slack-notification
source:
url: {{slack_hook_url}}
- name: bosh-cli
type: s3
source:
regexp: alpha-bosh-cli-(.*)-linux-amd64
bucket: {{bosh_cli_aws_s3_alpha_release_bucket}}
region_name: {{bosh_cli_aws_s3_release_bucket_region}}
- name: bosh-dns-release
type: bosh-io-release
source:
repository: cloudfoundry/dns-release
#
# BATS
#
- name: bats
type: git
source:
uri: https://github.com/cloudfoundry/bosh-acceptance-tests.git
branch: gocli-bats
- name: bosh-deployment
type: git
source:
uri: https://github.com/cloudfoundry/bosh-deployment
branch: master
- name: environment
type: pool
source:
pool: vsphere
uri: [email protected]:pivotal-cf-experimental/bats-concourse-pool.git
branch: master
private_key: {{github_deployment_key__bosh-cpi-environments}}
- name: vsphere-esxi-ubuntu-trusty
type: bosh-io-stemcell
source:
name: bosh-vsphere-esxi-ubuntu-trusty-go_agent
- name: candidate-warden-ubuntu-stemcell
type: s3
source:
bucket: bosh-core-stemcells-candidate
regexp: warden/bosh-stemcell-(.+)-warden-boshlite-ubuntu-trusty-go_agent.tgz
- name: warden-ubuntu-trusty
type: bosh-io-stemcell
source:
name: bosh-warden-boshlite-ubuntu-trusty-go_agent
- name: vsphere-esxi-centos-7
type: bosh-io-stemcell
source:
name: bosh-vsphere-esxi-centos-7-go_agent
- name: cpi-release
type: bosh-io-release
source:
repository: cloudfoundry-incubator/bosh-vsphere-cpi-release
- name: bosh-agent
type: git
source:
uri: https://github.com/cloudfoundry/bosh-agent
branch: master