@@ -46,21 +46,26 @@ steps:
46
46
- verify disable-client-cert
47
47
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
48
48
args : ['/bin/bash', '-c', 'cft test run TestDisableClientCert --stage teardown --verbose --test-dir test/integration']
49
- - id : converge shared-vpc-local
49
+ - id : init shared-vpc-local
50
50
waitFor :
51
51
- create all
52
52
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
53
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do converge shared-vpc-local']
53
+ args : ['/bin/bash', '-c', 'cft test run TestSharedVPC --stage init --verbose --test-dir test/integration']
54
+ - id : apply shared-vpc-local
55
+ waitFor :
56
+ - init shared-vpc-local
57
+ name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
58
+ args : ['/bin/bash', '-c', 'cft test run TestSharedVPC --stage apply --verbose --test-dir test/integration']
54
59
- id : verify shared-vpc-local
55
60
waitFor :
56
- - converge shared-vpc-local
61
+ - apply shared-vpc-local
57
62
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
58
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do verify shared-vpc-local ']
63
+ args : ['/bin/bash', '-c', 'cft test run TestSharedVPC --stage verify --verbose --test-dir test/integration ']
59
64
- id : destroy shared-vpc-local
60
65
waitFor :
61
66
- verify shared-vpc-local
62
67
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
63
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do destroy shared-vpc-local ']
68
+ args : ['/bin/bash', '-c', 'cft test run TestSharedVPC --stage teardown --verbose --test-dir test/integration ']
64
69
- id : init safer-cluster-local
65
70
waitFor :
66
71
- create all
@@ -81,21 +86,26 @@ steps:
81
86
- verify safer-cluster-local
82
87
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
83
88
args : ['/bin/bash', '-c', 'cft test run TestSaferCluster --stage destroy --verbose']
84
- - id : converge simple-regional-local
89
+ - id : init simple-regional-local
85
90
waitFor :
86
91
- create all
87
92
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
88
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do converge simple-regional-local']
93
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleRegional --stage init --verbose']
94
+ - id : apply simple-regional-local
95
+ waitFor :
96
+ - init simple-regional-local
97
+ name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
98
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleRegional --stage apply --verbose']
89
99
- id : verify simple-regional-local
90
100
waitFor :
91
- - converge simple-regional-local
101
+ - apply simple-regional-local
92
102
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
93
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do verify simple-regional-local ']
103
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleRegional --stage verify --verbose ']
94
104
- id : destroy simple-regional-local
95
105
waitFor :
96
- - verify simple-regional-local
106
+ - apply simple-regional-local
97
107
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
98
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do destroy simple-regional-local ']
108
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleRegional --stage teardown --verbose ']
99
109
- id : converge simple-regional-private-local
100
110
waitFor :
101
111
- create all
@@ -381,36 +391,46 @@ steps:
381
391
- verify simple-zonal-with-asm-local
382
392
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
383
393
args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do destroy simple-zonal-with-asm-local']
384
- - id : converge simple-autopilot-private-local
394
+ - id : init simple-autopilot-private-local
385
395
waitFor :
386
396
- create all
387
397
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
388
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do converge simple-autopilot-private-local']
398
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleAutopilotPrivate --stage init --verbose']
399
+ - id : apply simple-autopilot-private-local
400
+ waitFor :
401
+ - init simple-autopilot-private-local
402
+ name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
403
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleAutopilotPrivate --stage apply --verbose']
389
404
- id : verify simple-autopilot-private-local
390
405
waitFor :
391
- - converge simple-autopilot-private-local
406
+ - apply simple-autopilot-private-local
392
407
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
393
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do verify simple-autopilot-private-local ']
408
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleAutopilotPrivate --stage verify --verbose ']
394
409
- id : destroy simple-autopilot-private-local
395
410
waitFor :
396
- - verify simple-autopilot-private-local
411
+ - apply simple-autopilot-private-local
397
412
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
398
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do destroy simple-autopilot-private-local ']
399
- - id : converge simple-autopilot-public-local
413
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleAutopilotPrivate --stage teardown --verbose ']
414
+ - id : init simple-autopilot-public-local
400
415
waitFor :
401
416
- create all
402
417
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
403
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do converge simple-autopilot-public-local']
418
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleAutopilotPublic --stage init --verbose']
419
+ - id : apply simple-autopilot-public-local
420
+ waitFor :
421
+ - init simple-autopilot-public-local
422
+ name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
423
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleAutopilotPublic --stage apply --verbose']
404
424
- id : verify simple-autopilot-public-local
405
425
waitFor :
406
- - converge simple-autopilot-public-local
426
+ - apply simple-autopilot-public-local
407
427
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
408
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do verify simple-autopilot-public-local ']
428
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleAutopilotPublic --stage verify --verbose ']
409
429
- id : destroy simple-autopilot-public-local
410
430
waitFor :
411
431
- verify simple-autopilot-public-local
412
432
name : ' gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
413
- args : ['/bin/bash', '-c', 'source /usr/local/bin/task_helper_functions.sh && kitchen_do destroy simple-autopilot-public-local ']
433
+ args : ['/bin/bash', '-c', 'cft test run TestSimpleAutopilotPublic --stage teardown --verbose ']
414
434
- id : init private-zonal-with-networking
415
435
waitFor :
416
436
- prepare
0 commit comments