Skip to content

Commit 638f53e

Browse files
committed
Add caracal support
This patch enables caracal in the various places needed for charms to be able to detect and operate with either jammy-caracal or caracal on the nobel distro.
1 parent 4646435 commit 638f53e

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

charmhelpers/contrib/openstack/utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@
161161
('2022.2', 'zed'),
162162
('2023.1', 'antelope'),
163163
('2023.2', 'bobcat'),
164+
('2024.1', 'caracal'),
164165
])
165166

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

charmhelpers/fetch/ubuntu.py

+10
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,14 @@
246246
'bobcat/proposed': 'jammy-proposed/bobcat',
247247
'jammy-bobcat/proposed': 'jammy-proposed/bobcat',
248248
'jammy-proposed/bobcat': 'jammy-proposed/bobcat',
249+
# caracal
250+
'caracal': 'jammy-updates/caracal',
251+
'jammy-caracal': 'jammy-updates/caracal',
252+
'jammy-caracal/updates': 'jammy-updates/caracal',
253+
'jammy-updates/caracal': 'jammy-updates/caracal',
254+
'caracal/proposed': 'jammy-proposed/caracal',
255+
'jammy-caracal/proposed': 'jammy-proposed/caracal',
256+
'jammy-proposed/caracal': 'jammy-proposed/caracal',
249257

250258
# OVN
251259
'focal-ovn-22.03': 'focal-updates/ovn-22.03',
@@ -279,6 +287,7 @@
279287
'zed',
280288
'antelope',
281289
'bobcat',
290+
'caracal',
282291
)
283292

284293

@@ -308,6 +317,7 @@
308317
('kinetic', 'zed'),
309318
('lunar', 'antelope'),
310319
('mantic', 'bobcat'),
320+
('nobel', 'caracal'),
311321
])
312322

313323

0 commit comments

Comments
 (0)