-
Notifications
You must be signed in to change notification settings - Fork 11
94 lines (87 loc) · 2.45 KB
/
Copy pathcontainers-openstack.yaml
File metadata and controls
94 lines (87 loc) · 2.45 KB
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
name: Build OpenStack containers
on:
push:
tags:
- v*
branches:
- main
paths: &triggerpaths
- "containers/cinder/**"
- "containers/glance/**"
- "containers/horizon/**"
- "containers/ironic/**"
- "containers/keystone/**"
- "containers/neutron/**"
- "containers/nova/**"
- "containers/octavia/**"
- "containers/openstack-client/**"
- "containers/placement/**"
- "containers/skyline/**"
- ".github/workflows/containers-openstack.yaml"
- ".github/workflows/build-container-reuse.yaml"
- "python/**"
pull_request:
types: [opened, synchronize, reopened, closed]
paths: *triggerpaths
workflow_dispatch:
merge_group:
types: [checks_requested]
jobs:
openstack:
strategy:
matrix:
project:
- cinder
- glance
- horizon
- octavia
- openstack-client
- skyline
uses: ./.github/workflows/build-container-reuse.yaml
secrets: inherit
with:
container_name: ${{ matrix.project }}
dockerfile_path: containers/${{ matrix.project }}/Dockerfile
build_args: OPENSTACK_VERSION=2025.2
latest_name: "2025.2"
placement:
uses: ./.github/workflows/build-container-reuse.yaml
secrets: inherit
with:
container_name: placement
dockerfile_path: containers/placement/Dockerfile
build_args: OPENSTACK_VERSION=2026.1
latest_name: "2026.1"
nova:
uses: ./.github/workflows/build-container-reuse.yaml
secrets: inherit
with:
container_name: nova
dockerfile_path: containers/nova/Dockerfile
build_args: OPENSTACK_VERSION=2026.1
latest_name: "2026.1"
neutron:
uses: ./.github/workflows/build-container-reuse.yaml
secrets: inherit
with:
container_name: neutron
dockerfile_path: containers/neutron/Dockerfile
build_args: OPENSTACK_VERSION=2026.1
latest_name: "2026.1"
ironic:
uses: ./.github/workflows/build-container-reuse.yaml
secrets: inherit
with:
container_name: ironic
dockerfile_path: containers/ironic/Dockerfile
build_args: OPENSTACK_VERSION=2026.1
latest_name: "2026.1"
target: final
keystone:
uses: ./.github/workflows/build-container-reuse.yaml
secrets: inherit
with:
container_name: keystone
dockerfile_path: containers/keystone/Dockerfile
build_args: OPENSTACK_VERSION=2026.1
latest_name: "2026.1"