forked from vchrisb/pcf-automation-gcp-paving
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pipeline.yml
1163 lines (1111 loc) · 36.9 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
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
resource_types:
- name: terraform
type: docker-image
source:
repository: ljfranklin/terraform-resource
tag: 0.11.14
- name: pivnet
type: docker-image
source:
repository: pivotalcf/pivnet-resource
tag: latest-final
- name: kubernetes
type: docker-image
source:
repository: zlabjp/kubernetes-resource
tag: "1.15"
resources:
- name: platform-automation-pivnet
type: pivnet
icon: cloud-download-outline
source:
api_token: ((secrets.pivnet_api_token))
product_slug: platform-automation
product_version: ((platform-automation-version))
sort_by: semver
- name: env-state-aws
type: terraform
icon: alpha-t-box
source:
backend_type: s3
backend_config:
bucket: ((buckets.installation))
key: terraform.tfstate
endpoint: ((buckets.endpoints.installation))
access_key: ((secrets.installation_bucket_access_key_id))
secret_key: ((secrets.installation_bucket_secret_access_key))
profile: "not_default"
skip_credentials_validation: ((buckets.minio))
force_path_style: ((buckets.minio))
vars:
env_name: ((pcf.env_name))
dns_suffix: ((terraform.aws.dns_suffix))
hosted_zone: ((terraform.aws.hosted_zone))
region: ((region))
availability_zones: ((terraform.aws.availability_zones))
rds_instance_count: ((terraform.aws.rds_instance_count))
iam_users: false
ops_manager_vm: false
env:
AWS_ACCESS_KEY_ID: ((secrets.access_key_id))
AWS_SECRET_ACCESS_KEY: ((secrets.secret_access_key))
AWS_DEFAULT_REGION: ((region))
- name: env-state-system-cluster
type: terraform
icon: alpha-t-box
source:
backend_type: s3
backend_config:
bucket: ((buckets.installation))
key: system-cluster.tfstate
endpoint: ((buckets.endpoints.installation))
access_key: ((secrets.installation_bucket_access_key_id))
secret_key: ((secrets.installation_bucket_secret_access_key))
profile: "not_default"
skip_credentials_validation: ((buckets.minio))
force_path_style: ((buckets.minio))
env:
AWS_ACCESS_KEY_ID: ((secrets.access_key_id))
AWS_SECRET_ACCESS_KEY: ((secrets.secret_access_key))
AWS_DEFAULT_REGION: ((region))
- name: kubernetes-cluster
type: kubernetes
# buckets
- name: platform-automation-tasks
type: s3
icon: folder-google-drive
source:
bucket: ((buckets.pivnet_products))
access_key_id: ((secrets.pivnet_products_bucket_access_key_id))
secret_access_key: ((secrets.pivnet_products_bucket_secret_access_key))
endpoint: ((buckets.endpoints.pivnet_products))
region_name: ((region))
regexp: platform-automation-tasks-((platform-automation-version)).zip
- name: platform-automation-image
type: s3
icon: folder-google-drive
source:
bucket: ((buckets.pivnet_products))
access_key_id: ((secrets.pivnet_products_bucket_access_key_id))
secret_access_key: ((secrets.pivnet_products_bucket_secret_access_key))
endpoint: ((buckets.endpoints.pivnet_products))
region_name: ((region))
regexp: platform-automation-image-((platform-automation-version)).tgz
- name: opsman-image
type: s3
icon: folder-google-drive
source:
bucket: ((buckets.pivnet_products))
access_key_id: ((secrets.pivnet_products_bucket_access_key_id))
secret_access_key: ((secrets.pivnet_products_bucket_secret_access_key))
endpoint: ((buckets.endpoints.pivnet_products))
region_name: ((region))
regexp: ops-manager-aws-(.*).yml
- name: pks-product
type: s3
icon: folder-google-drive
source:
bucket: ((buckets.pivnet_products))
access_key_id: ((secrets.pivnet_products_bucket_access_key_id))
secret_access_key: ((secrets.pivnet_products_bucket_secret_access_key))
endpoint: ((buckets.endpoints.pivnet_products))
region_name: ((region))
regexp: pivotal-container-service-(.*).pivotal
- name: harbor-product
type: s3
icon: folder-google-drive
source:
bucket: ((buckets.pivnet_products))
access_key_id: ((secrets.pivnet_products_bucket_access_key_id))
secret_access_key: ((secrets.pivnet_products_bucket_secret_access_key))
endpoint: ((buckets.endpoints.pivnet_products))
region_name: ((region))
regexp: harbor-container-registry-(.*).pivotal
- name: pks-cli
type: s3
icon: folder-google-drive
source:
bucket: ((buckets.pivnet_products))
access_key_id: ((secrets.pivnet_products_bucket_access_key_id))
secret_access_key: ((secrets.pivnet_products_bucket_secret_access_key))
endpoint: ((buckets.endpoints.pivnet_products))
region_name: ((region))
regexp: pks-linux-amd64-(.*)
- name: pks-stemcell
type: s3
icon: folder-google-drive
source:
bucket: ((buckets.pivnet_products))
access_key_id: ((secrets.pivnet_products_bucket_access_key_id))
secret_access_key: ((secrets.pivnet_products_bucket_secret_access_key))
endpoint: ((buckets.endpoints.pivnet_products))
region_name: ((region))
regexp: pks-stemcell/light-bosh-stemcell-(.*)-aws.*\.tgz #light-bosh-stemcell-170.15-aws-xen-hvm-ubuntu-xenial-go_agent.tgz
- name: harbor-stemcell
type: s3
icon: folder-google-drive
source:
bucket: ((buckets.pivnet_products))
access_key_id: ((secrets.pivnet_products_bucket_access_key_id))
secret_access_key: ((secrets.pivnet_products_bucket_secret_access_key))
endpoint: ((buckets.endpoints.pivnet_products))
region_name: ((region))
regexp: harbor-stemcell/light-bosh-stemcell-(.*)-aws.*\.tgz #light-bosh-stemcell-170.15-aws-xen-hvm-ubuntu-xenial-go_agent.tgz
- name: installation
type: s3
icon: book-lock
source:
bucket: ((buckets.installation))
access_key_id: ((secrets.installation_bucket_access_key_id))
secret_access_key: ((secrets.installation_bucket_secret_access_key))
endpoint: ((buckets.endpoints.installation))
region_name: ((region))
regexp: ((pcf.env_name))/installation-(.*).zip
- name: certificates
type: s3
icon: certificate
source:
bucket: ((buckets.installation))
access_key_id: ((secrets.installation_bucket_access_key_id))
secret_access_key: ((secrets.installation_bucket_secret_access_key))
endpoint: ((buckets.endpoints.installation))
region_name: ((region))
regexp: ((pcf.env_name))/certificates-(.*).tgz
initial_path: ((pcf.env_name))/certificates-0.0.0.tgz
- name: certificates-version
type: semver
icon: change_history
source:
initial_version: 0.0.0
key: ((pcf.env_name))/certificates-version.txt
bucket: ((buckets.installation))
access_key_id: ((secrets.installation_bucket_access_key_id))
secret_access_key: ((secrets.installation_bucket_secret_access_key))
endpoint: ((buckets.endpoints.installation))
region_name: ((region))
# configurations
- name: pcf-automation-source
type: git
icon: github-circle
source:
uri: ((github.repos.pcf-automation-source.uri))
branch: ((github.repos.pcf-automation-source.branch))
- name: kubernetes-lb
type: git
icon: github-circle
source:
uri: ((github.repos.kubernetes-lb.uri))
branch: ((github.repos.kubernetes-lb.branch))
- name: terraforming-aws
type: git
icon: github-circle
source:
uri: ((github.repos.terraforming-aws.uri))
branch: ((github.repos.terraforming-aws.branch))
- name: configuration
type: git
icon: github-circle
source:
private_key: ((secrets.pcf-config_deploy_rsa_private_key))
uri: ((github.repos.configuration.uri))
branch: ((github.repos.configuration.branch))
# triggers used to have jobs do something in a timely manner
- name: one-time-trigger
type: time
icon: alarm-check
source:
interval: 999999h
- name: daily-trigger
type: time
icon: alarm-check
source:
interval: 24h
interpolate: &interpolate
file: pcf-automation-source/tasks/interpolate.yml
input_mapping:
config: configuration
terraform-output: env-state-aws
certificates: certificates
output_mapping:
interpolated-config: configuration-interpolated
params:
AWS_ACCESS_KEY_ID: ((secrets.access_key_id))
AWS_SECRET_ACCESS_KEY: ((secrets.secret_access_key))
CUSTOMER_NUMBER: ((secrets.customer_number))
ENV_NAME: ((pcf.env_name))
HARBOR_PASSWORD: ((secrets.harbor_password))
OM_DECRYPTION_PASSPHRASE: ((secrets.opsman_decryption-passphrase))
OM_PASSWORD: ((secrets.opsman_password))
OM_USERNAME: ((opsman.username))
PIVNET_API_TOKEN: ((secrets.pivnet_api_token))
PLAN_NAME: system
make-state-commit: &make-state-commit
do:
- task: make-commit
image: platform-automation-image
file: platform-automation-tasks/tasks/make-git-commit.yml
input_mapping:
repository: configuration
file-source: generated-state
output_mapping:
repository-commit: configuration-commit
params:
FILE_SOURCE_PATH: state.yml
FILE_DESTINATION_PATH: ((pcf.env_name))/state/state.yml
GIT_AUTHOR_EMAIL: ((pcf.pipeline_email))
GIT_AUTHOR_NAME: ((pcf.pipeline_name))
COMMIT_MESSAGE: "Update state file"
- put: configuration
params:
repository: configuration-commit
merge: true
jobs:
- name: letsencrypt-certificates
serial: true
public: false
plan:
- in_parallel:
- get: certificates-version
params:
bump: minor
- get: pcf-automation-source
- get: certificates
params:
unpack: true
- get: daily-trigger
trigger: true
- task: dehydrated
file: pcf-automation-source/tasks/dehydrated.yml
input_mapping:
certificates: certificates
certificates-version: certificates-version
output_mapping:
certificates: updated-certificates
params:
AWS_ACCESS_KEY_ID: ((secrets.access_key_id))
AWS_SECRET_ACCESS_KEY: ((secrets.secret_access_key))
ENV_NAME: ((pcf.env_name))
DNS_SUFFIX: ((terraform.aws.dns_suffix))
CA: ((dehydrated.ca))
CURL_OPTS: ((dehydrated.curl_opts))
- put: certificates-version
params:
file: certificates-version/version
- put: certificates
params:
file: updated-certificates/certificates*.tgz
- name: terraforming-aws
serial: true
public: false
plan:
- get: pcf-automation-source
- get: terraforming-aws
- put: env-state-aws
params:
env_name: ((pcf.env_name))
terraform_source: terraforming-aws/terraforming-pks
override_files:
- pcf-automation-source/terraform_override_files/harbor.tf
- pcf-automation-source/terraform_override_files/caa.tf
delete_on_failure: false
- name: configuration
serial: true
public: false
plan:
- in_parallel:
- get: pcf-automation-source
trigger: true
- get: configuration
- task: add-new-templates
input_mapping:
config: configuration
pcf-automation: pcf-automation-source
params:
ENV_NAME: ((pcf.env_name))
GIT_AUTHOR_EMAIL: ((pcf.pipeline_email))
GIT_AUTHOR_NAME: ((pcf.pipeline_name))
COMMIT_MESSAGE: "Update template files"
config:
platform: linux
image_resource:
type: docker-image
source:
repository: alpine/git
inputs:
- name: config
- name: pcf-automation
outputs:
- name: config-commit
run:
path: /bin/sh
args:
- -c
- |
set -eux
git clone config config-commit
mkdir -p config-commit/$ENV_NAME/state
touch config-commit/$ENV_NAME/state/state.yml
cp -a pcf-automation/templates/* config-commit/$ENV_NAME
git config --global user.email "$GIT_AUTHOR_EMAIL"
git config --global user.name "$GIT_AUTHOR_NAME"
cd config-commit
git add -A
git diff-index --quiet HEAD || git commit -m "$COMMIT_MESSAGE"
- put: configuration
params:
repository: config-commit
merge: true
- name: fetch-platform-automation
# We use the pivnet resource to bootstrap the pipeline,
# and because this product is part of the pipeline, not the foundation
plan:
- get: platform-automation-pivnet
trigger: true
- in_parallel:
- put: platform-automation-tasks
params:
file: platform-automation-pivnet/*tasks*.zip
- put: platform-automation-image
params:
file: platform-automation-pivnet/*image*.tgz
### FETCH JOBS
- name: fetch-opsman
serial: true
public: false
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
- get: platform-automation-tasks
params:
unpack: true
- get: configuration
passed: [configuration]
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
- task: interpolate-config
<<: *interpolate
- task: download-opsman-image
image: platform-automation-image
file: platform-automation-tasks/tasks/download-product.yml
params:
CONFIG_FILE: ((pcf.env_name))/download-product-configs/opsman.yml
VARS_FILES: config/((pcf.env_name))/download-product-configs/vars.yml
input_mapping:
config: configuration-interpolated
- in_parallel:
- put: opsman-image
params:
file: downloaded-product/*
- name: fetch-pks
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
- get: platform-automation-tasks
params:
unpack: true
- get: configuration
passed: [configuration]
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
- task: interpolate-config
<<: *interpolate
- task: download-pks-product-and-stemcell
image: platform-automation-image
file: platform-automation-tasks/tasks/download-product.yml
params:
CONFIG_FILE: ((pcf.env_name))/download-product-configs/pks.yml
VARS_FILES: config/((pcf.env_name))/download-product-configs/vars.yml
input_mapping:
config: configuration-interpolated
output_mapping:
downloaded-stemcell: pks-stemcell
- in_parallel:
- put: pks-product
params:
file: downloaded-product/*.pivotal
- put: pks-stemcell
params:
file: pks-stemcell/*.tgz
- name: fetch-harbor
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
- get: platform-automation-tasks
params:
unpack: true
- get: configuration
passed: [configuration]
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
- task: interpolate-config
<<: *interpolate
- task: download-harbor-product-and-stemcell
image: platform-automation-image
file: platform-automation-tasks/tasks/download-product.yml
params:
CONFIG_FILE: ((pcf.env_name))/download-product-configs/harbor.yml
VARS_FILES: config/((pcf.env_name))/download-product-configs/vars.yml
input_mapping:
config: configuration-interpolated
output_mapping:
downloaded-stemcell: harbor-stemcell
- in_parallel:
- put: harbor-product
params:
file: downloaded-product/*.pivotal
- put: harbor-stemcell
params:
file: harbor-stemcell/*.tgz
- name: fetch-pks-cli
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
- get: platform-automation-tasks
params:
unpack: true
- get: configuration
passed: [configuration]
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
- task: interpolate-config
<<: *interpolate
- task: download-pks-product-and-stemcell
image: platform-automation-image
file: platform-automation-tasks/tasks/download-product.yml
params:
CONFIG_FILE: ((pcf.env_name))/download-product-configs/pks-cli.yml
VARS_FILES: config/((pcf.env_name))/download-product-configs/vars.yml
input_mapping:
config: configuration-interpolated
- in_parallel:
- put: pks-cli
params:
file: downloaded-product/pks-linux-amd64-*
# INSTALL JOBS
- name: install-opsman
serial: true
serial_groups: [install]
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
- get: one-time-trigger
trigger: true
- get: platform-automation-tasks
params:
unpack: true
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
- get: opsman-image
trigger: true
- get: configuration
- get: pcf-automation-source
- get: env-state-aws
- task: interpolate-config
<<: *interpolate
- task: create-vm
image: platform-automation-image
file: platform-automation-tasks/tasks/create-vm.yml
input_mapping:
image: opsman-image
state: configuration
config: configuration-interpolated
params:
STATE_FILE: ((pcf.env_name))/state/state.yml
OPSMAN_CONFIG_FILE: ((pcf.env_name))/config/opsman.yml
ensure: *make-state-commit
- task: configure-authentication
image: platform-automation-image
file: platform-automation-tasks/tasks/configure-authentication.yml
attempts: 10
input_mapping:
env: configuration-interpolated
config: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
AUTH_CONFIG_FILE: ((pcf.env_name))/config/auth.yml
- task: configure-director-ssl
image: platform-automation-image
file: pcf-automation-source/tasks/configure-director-ssl.yml
input_mapping:
config: configuration-interpolated
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
CERTIFICATE_PEM: ((pcf.env_name))/config/ops_manager_fullchain.pem
PRIVATE_KEY_PEM: ((pcf.env_name))/config/ops_manager_privkey.pem
- task: configure-director
image: platform-automation-image
file: platform-automation-tasks/tasks/configure-director.yml
input_mapping:
config: configuration-interpolated
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
DIRECTOR_CONFIG_FILE: ((pcf.env_name))/config/director.yml
- task: apply-director-changes
image: platform-automation-image
file: platform-automation-tasks/tasks/apply-director-changes.yml
input_mapping:
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
# UPGRADE
- name: export-installation
serial: true
plan:
- in_parallel:
- get: daily-trigger
trigger: true
- get: platform-automation-image
params:
unpack: true
- get: platform-automation-tasks
params:
unpack: true
- get: configuration
- get: pcf-automation-source
- get: env-state-aws
passed: [install-opsman]
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
- task: interpolate-config
<<: *interpolate
- task: export-installation
image: platform-automation-image
file: platform-automation-tasks/tasks/export-installation.yml
input_mapping:
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
- put: installation
params:
file: installation/installation-*.zip
- name: upgrade-opsman
serial: true
serial_groups: [install]
plan:
- in_parallel:
- get: one-time-trigger
passed: [install-opsman]
- get: platform-automation-image
params:
unpack: true
- get: platform-automation-tasks
params:
unpack: true
- get: opsman-image
trigger: true
- get: installation
passed: [export-installation]
- get: configuration
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
- task: interpolate-config
<<: *interpolate
- task: upgrade-opsman
image: platform-automation-image
file: platform-automation-tasks/tasks/upgrade-opsman.yml
input_mapping:
image: opsman-image
state: configuration
config: configuration-interpolated
env: configuration-interpolated
vars: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
STATE_FILE: ((pcf.env_name))/state/state.yml
OPSMAN_CONFIG_FILE: ((pcf.env_name))/config/opsman.yml
ensure: *make-state-commit
- task: configure-director-ssl
image: platform-automation-image
file: pcf-automation-source/tasks/configure-director-ssl.yml
input_mapping:
config: configuration-interpolated
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
CERTIFICATE_PEM: ((pcf.env_name))/config/ops_manager_fullchain.pem
PRIVATE_KEY_PEM: ((pcf.env_name))/config/ops_manager_privkey.pem
- task: apply-director-changes
image: platform-automation-image
file: platform-automation-tasks/tasks/apply-director-changes.yml
input_mapping:
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
- name: upload-and-stage-pks-product
serial: true
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
- get: platform-automation-tasks
params:
unpack: true
- get: pks-product
trigger: true
- get: configuration
passed: [upgrade-opsman]
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
- task: interpolate-config
<<: *interpolate
- task: upload-product
image: platform-automation-image
file: platform-automation-tasks/tasks/upload-product.yml
input_mapping:
product: pks-product
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
- task: stage-product
image: platform-automation-image
file: platform-automation-tasks/tasks/stage-product.yml
input_mapping:
product: pks-product
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
- name: upload-and-stage-harbor-product
serial: true
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
- get: platform-automation-tasks
params:
unpack: true
- get: harbor-product
trigger: true
- get: configuration
passed: [upgrade-opsman]
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
- task: interpolate-config
<<: *interpolate
- task: upload-product
image: platform-automation-image
file: platform-automation-tasks/tasks/upload-product.yml
input_mapping:
product: harbor-product
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
- task: stage-product
image: platform-automation-image
file: platform-automation-tasks/tasks/stage-product.yml
input_mapping:
product: harbor-product
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
- name: upload-pks-stemcell
serial: true
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
- get: platform-automation-tasks
params:
unpack: true
- get: pks-stemcell
trigger: true
- get: configuration
passed: [upgrade-opsman]
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
- task: interpolate-config
<<: *interpolate
- task: upload-pks-stemcell
image: platform-automation-image
file: platform-automation-tasks/tasks/upload-stemcell.yml
input_mapping:
env: configuration-interpolated
stemcell: pks-stemcell
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
- name: upload-harbor-stemcell
serial: true
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
- get: platform-automation-tasks
params:
unpack: true
- get: harbor-stemcell
trigger: true
- get: configuration
passed: [upgrade-opsman]
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
- task: interpolate-config
<<: *interpolate
- task: upload-harbor-stemcell
image: platform-automation-image
file: platform-automation-tasks/tasks/upload-stemcell.yml
input_mapping:
env: configuration-interpolated
stemcell: harbor-stemcell
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
- name: configure-pks-product
serial: true
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
passed:
- upload-and-stage-pks-product
trigger: true
- get: platform-automation-tasks
params:
unpack: true
- get: configuration
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
trigger: true
- task: interpolate-config
<<: *interpolate
- task: configure-product
image: platform-automation-image
file: platform-automation-tasks/tasks/configure-product.yml
input_mapping:
config: configuration-interpolated
env: configuration-interpolated
params:
CONFIG_FILE: ((pcf.env_name))/config/pks.yml
ENV_FILE: ((pcf.env_name))/env/env.yml
- name: configure-harbor-product
serial: true
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
passed:
- upload-and-stage-harbor-product
trigger: true
- get: platform-automation-tasks
params:
unpack: true
- get: configuration
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
trigger: true
- task: interpolate-config
<<: *interpolate
- task: configure-product
image: platform-automation-image
file: platform-automation-tasks/tasks/configure-product.yml
input_mapping:
config: configuration-interpolated
env: configuration-interpolated
params:
CONFIG_FILE: ((pcf.env_name))/config/harbor.yml
ENV_FILE: ((pcf.env_name))/env/env.yml
- name: apply-product-changes
serial: true
plan:
- in_parallel:
- get: platform-automation-image
params:
unpack: true
passed:
- configure-pks-product
- upload-pks-stemcell
- configure-harbor-product
- upload-harbor-stemcell
trigger: true
- get: platform-automation-tasks
params:
unpack: true
- get: configuration
- get: pcf-automation-source
- get: env-state-aws
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
- task: interpolate-config
<<: *interpolate
- task: apply-product-changes
image: platform-automation-image
file: platform-automation-tasks/tasks/apply-changes.yml
input_mapping:
env: configuration-interpolated
params:
ENV_FILE: ((pcf.env_name))/env/env.yml
- name: create-system-cluster
serial: true
public: false
plan:
- in_parallel:
- get: kubernetes-lb
- get: platform-automation-image
params:
unpack: true
passed:
- apply-product-changes
trigger: true
- get: platform-automation-tasks
params:
unpack: true
- get: configuration
- get: pcf-automation-source
- get: env-state-aws
- get: pks-cli
- get: certificates
params:
unpack: true
passed: [letsencrypt-certificates]
trigger: true
- task: interpolate-config
<<: *interpolate
- task: create-system-cluster
image: platform-automation-image
file: pcf-automation-source/tasks/create-cluster.yml
params:
CLUSTER_NAME: system
PLAN_NAME: system
ENV_NAME: ((pcf.env_name))
DNS_NAME: ((terraform.aws.dns_suffix))
ENV_FILE: ((pcf.env_name))/env/env.yml
SUBNETS_FILE: ((pcf.env_name))/config/public_subnets.txt
AWS_ACCESS_KEY_ID: ((secrets.access_key_id))
AWS_SECRET_ACCESS_KEY: ((secrets.secret_access_key))
AWS_DEFAULT_REGION: ((region))
OPS_MANAGER_KEY_PATH: ((pcf.env_name))/config/ops_manager_ssh_private_key.pem
input_mapping:
env: configuration-interpolated
pks-cli: pks-cli
output_mapping:
master-instances: master-instances
- put: env-state-system-cluster
params:
env_name: ((pcf.env_name))
terraform_source: kubernetes-lb
var_files:
- master-instances/system.pks-cluster.json
- env-state-aws/metadata
- master-instances/system.cluster.yml
vars: