blob: 9394c06d39f38d7199546a744e5a962bb59b0a0e [file] [log] [blame]
Mohammed Nasereb46b6c2022-08-29 21:45:29 -04001#!/usr/bin/env python3
2
3import yaml
4
Mohammed Nasereba1a762022-08-29 22:05:09 -04005PROJECTS = [
Mohammed Naser4a40c9e2022-08-29 22:10:23 -04006 "cinder",
7 "heat",
8 "senlin",
9 "octavia",
10 "barbican",
11 "designate",
12 "nova",
13 "neutron",
14 "monasca-notification",
15 "monasca-agent",
16 "keystone",
17 "horizon",
18 "monasca-api",
19 "ironic",
20 "glance",
21 "magnum",
22 "monasca-persister",
23 "placement",
Mohammed Nasereba1a762022-08-29 22:05:09 -040024]
Mohammed Naser4a40c9e2022-08-29 22:10:23 -040025RELEASES = ["xena", "wallaby", "yoga", "master"]
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040026
Mohammed Nasercebe64f2022-08-29 22:15:46 -040027PROFILES = {
28 "cinder": "ceph qemu",
29 "nova": "ceph openvswitch configdrive qemu migration",
30 "neutron": "openvswitch vpn",
31 "keystone": "apache ldap openidc",
32 "horizon": "apache",
33 "monasca-api": "apache influxdb",
34 "ironic": "ipxe ipmi qemu tftp",
35 "glance": "ceph",
36 "monasca-persister": "influxdb",
37 "placement": "apache",
38}
39DIST_PACKAGES = {
40 "heat": "curl",
41 "designate": "bind9utils",
42 "nova": "ovmf qemu-efi-aarch64",
43 "neutron": "jq ethtool lshw",
44 "monasca-agent": "iproute2 libvirt-clients lshw",
45 "ironic": "ethtool lshw iproute2",
46}
47PIP_PACKAGES = {
48 "neutron": "neutron-vpnaas",
49 "monasca-agent": "libvirt-python python-glanceclient python-neutronclient python-novaclient py3nvml",
50 "horizon": "designate-dashboard heat-dashboard ironic-ui magnum-ui neutron-vpnaas-dashboard octavia-dashboard senlin-dashboard monasca-ui",
51 "ironic": "python-dracclient sushy",
52 "placement": "httplib2",
53}
Mohammed Naser503c1f82022-08-29 22:17:36 -040054PLATFORMS = {
55 "nova": "linux/amd64,linux/arm64",
56 "neutron": "linux/amd64,linux/arm64",
57}
Mohammed Nasercebe64f2022-08-29 22:15:46 -040058
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040059
60def get_ref_for_project(project, release):
61 return (
62 open(f"images/openstack/projects/{project}/{release}/ref", "r").read().strip()
63 )
64
65
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040066def get_build_args_for_project(project, release):
67 return {
68 "RELEASE": release,
69 "PROJECT": project,
70 "PROJECT_REF": get_ref_for_project(project, release),
Mohammed Nasercebe64f2022-08-29 22:15:46 -040071 "PROFILES": PROFILES.get(project, ""),
72 "DIST_PACKAGES": DIST_PACKAGES.get(project, ""),
73 "PIP_PACKAGES": PIP_PACKAGES.get(project, ""),
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040074 }
75
76
Mohammed Nasercbbdae72022-08-29 22:22:22 -040077def get_image_build_job_for_project(project, release):
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040078 build_args = get_build_args_for_project(project, release)
79 ref = get_ref_for_project(project, release)
80
81 return {
Mohammed Naser4a40c9e2022-08-29 22:10:23 -040082 "name": "Build openstack/{}".format(project),
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040083 "uses": "docker/build-push-action@v3.1.1",
84 "with": {
85 "context": "images/openstack",
Mohammed Nasere1d00672022-08-29 23:32:15 -040086 "cache-from": f"type=gha,scope={project}-{release}",
87 "cache-to": "type=gha,mode=max,scope={project}-{release}",
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040088 "push": True,
Mohammed Naser503c1f82022-08-29 22:17:36 -040089 "platforms": PLATFORMS.get(project, "linux/amd64"),
Mohammed Nasereb46b6c2022-08-29 21:45:29 -040090 "build-args": "\n".join([f"{k}={v}" for k, v in build_args.items()]),
91 "tags": f"quay.io/vexxhost/{project}:{ref}",
92 },
93 }
94
95
Mohammed Nasercbbdae72022-08-29 22:22:22 -040096def get_image_promote_job_for_project(project, release):
97 ref = get_ref_for_project(project, release)
98
99 return {
100 "name": "Promote openstack/{}".format(project),
101 "uses": "akhilerm/tag-push-action@v2.0.0",
102 "with": {
103 "src": f"quay.io/vexxhost/{project}:{ref}",
104 "dst": f"quay.io/vexxhost/{project}:{release}",
105 },
106 }
107
108
Mohammed Nasereb46b6c2022-08-29 21:45:29 -0400109for release in RELEASES:
Mohammed Naser7a37c992022-08-29 21:47:49 -0400110 workflow_name = f"test-{release}"
111
Mohammed Nasereb46b6c2022-08-29 21:45:29 -0400112 workflow = {
113 "name": f"test-{release}",
114 "on": {
115 "pull_request": {},
116 "push": {"branches": ["main"]},
117 },
118 "jobs": {
119 "build-images": {
120 "runs-on": "ubuntu-latest",
Mohammed Naser4a40c9e2022-08-29 22:10:23 -0400121 "steps": [
122 {"uses": "actions/checkout@v3.0.2"},
123 {"uses": "docker/setup-qemu-action@v2.0.0"},
124 {"uses": "docker/setup-buildx-action@v2.0.0"},
125 {
126 "uses": "docker/login-action@v2.0.0",
127 "with": {
128 "registry": "quay.io",
129 "username": "${{ secrets.QUAY_USERNAME }}",
130 "password": "${{ secrets.QUAY_ROBOT_TOKEN }}",
131 },
132 },
133 ]
Mohammed Nasercbbdae72022-08-29 22:22:22 -0400134 + [
135 get_image_build_job_for_project(project, release)
136 for project in PROJECTS
137 ]
Mohammed Naser4a40c9e2022-08-29 22:10:23 -0400138 + [
139 # molecule
Mohammed Nasercbbdae72022-08-29 22:22:22 -0400140 ]
141 + [
142 get_image_promote_job_for_project(project, release)
143 for project in PROJECTS
Mohammed Naser4a40c9e2022-08-29 22:10:23 -0400144 ],
Mohammed Nasereb46b6c2022-08-29 21:45:29 -0400145 }
146 },
147 }
148
Mohammed Naser7a37c992022-08-29 21:47:49 -0400149 with open(f".github/workflows/{workflow_name}.yml", "w") as fd:
150 yaml.dump(workflow, fd, sort_keys=False)