Skip to content

Commit 85dcbea

Browse files
authored
Merge pull request #913 from javacruft/feat/new-stacks
openstack: add new releases.
2 parents 1b2d4dc + 5ee3159 commit 85dcbea

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

charmhelpers/contrib/openstack/utils.py

+2
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,8 @@
162162
('2023.1', 'antelope'),
163163
('2023.2', 'bobcat'),
164164
('2024.1', 'caracal'),
165+
('2024.2', 'dalmatian'),
166+
('2025.1', 'epoxy'),
165167
])
166168

167169
# The ugly duckling - must list releases oldest to newest

charmhelpers/fetch/ubuntu.py

+20
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,22 @@
254254
'caracal/proposed': 'jammy-proposed/caracal',
255255
'jammy-caracal/proposed': 'jammy-proposed/caracal',
256256
'jammy-proposed/caracal': 'jammy-proposed/caracal',
257+
# dalmatian
258+
'dalmatian': 'noble-updates/dalmatian',
259+
'noble-dalmatian': 'noble-updates/dalmatian',
260+
'noble-dalmatian/updates': 'noble-updates/dalmatian',
261+
'noble-updates/dalmatian': 'noble-updates/dalmatian',
262+
'dalmatian/proposed': 'noble-proposed/dalmatian',
263+
'noble-dalmatian/proposed': 'noble-proposed/dalmatian',
264+
'noble-proposed/dalmatian': 'noble-proposed/dalmatian',
265+
# epoxy
266+
'epoxy': 'noble-updates/epoxy',
267+
'noble-epoxy': 'noble-updates/epoxy',
268+
'noble-epoxy/updates': 'noble-updates/epoxy',
269+
'noble-updates/epoxy': 'noble-updates/epoxy',
270+
'epoxy/proposed': 'noble-proposed/epoxy',
271+
'noble-epoxy/proposed': 'noble-proposed/epoxy',
272+
'noble-proposed/epoxy': 'noble-proposed/epoxy',
257273

258274
# OVN
259275
'focal-ovn-22.03': 'focal-updates/ovn-22.03',
@@ -288,6 +304,8 @@
288304
'antelope',
289305
'bobcat',
290306
'caracal',
307+
'dalmatian',
308+
'epoxy',
291309
)
292310

293311

@@ -318,6 +336,8 @@
318336
('lunar', 'antelope'),
319337
('mantic', 'bobcat'),
320338
('noble', 'caracal'),
339+
('oracular', 'dalmatian'),
340+
('plucky', 'epoxy'),
321341
])
322342

323343

0 commit comments

Comments
 (0)