-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.yaml
82 lines (73 loc) · 1.8 KB
/
build.yaml
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
---
- hosts: openstack
gather_facts: no
become: no
tasks:
- include_tasks: tasks/prepare-openstack.yml
when:
- cloud_platform == "aws" or cloud_platform == "gcp" or cloud_platform == "azure" or cloud_platform == "openstack"
- arch == "x86_64"
- hosts: beaker
gather_facts: no
become: no
tasks:
- include_tasks: tasks/prepare-beaker.yml
when:
- cloud_platform == "aws"
- arch == "aarch64"
- hosts: builder
tasks:
- include_tasks: tasks/create-qcow2.yml
when:
- cloud_platform == "aws" or cloud_platform == "gcp" or cloud_platform == "azure" or cloud_platform == "openstack"
- hosts: openstack
gather_facts: no
become: no
tasks:
- include_tasks: tasks/clean-openstack.yml
when:
- cloud_platform == "aws" or cloud_platform == "gcp" or cloud_platform == "azure" or cloud_platform == "openstack"
- arch == "x86_64"
- hosts: beaker
gather_facts: no
become: no
tasks:
- include_tasks: tasks/clean-beaker.yml
when:
- cloud_platform == "aws"
- arch == "aarch64"
- hosts: aws
gather_facts: yes
become: no
tasks:
- include_tasks: tasks/upload-aws.yml
when:
- cloud_platform == "aws"
- hosts: openstack
gather_facts: yes
become: no
tasks:
- include_tasks: tasks/upload-openstack.yml
when:
- cloud_platform == "openstack"
- hosts: esxi
gather_facts: no
become: no
tasks:
- include_tasks: tasks/build-esxi.yml
when:
- cloud_platform == "esxi"
- hosts: gcp
gather_facts: no
become: no
tasks:
- include_tasks: tasks/upload-gcp.yml
when:
- cloud_platform == "gcp"
- hosts: azure
gather_facts: no
become: no
tasks:
- include_tasks: tasks/upload-azure.yml
when:
- cloud_platform == "azure"