Skip to content

Commit

Permalink
Add caracal support
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ajkavanagh committed Jan 18, 2024
1 parent 4646435 commit 638f53e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions charmhelpers/contrib/openstack/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@
('2022.2', 'zed'),
('2023.1', 'antelope'),
('2023.2', 'bobcat'),
('2024.1', 'caracal'),
])

# The ugly duckling - must list releases oldest to newest
Expand Down
10 changes: 10 additions & 0 deletions charmhelpers/fetch/ubuntu.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,14 @@
'bobcat/proposed': 'jammy-proposed/bobcat',
'jammy-bobcat/proposed': 'jammy-proposed/bobcat',
'jammy-proposed/bobcat': 'jammy-proposed/bobcat',
# caracal
'caracal': 'jammy-updates/caracal',
'jammy-caracal': 'jammy-updates/caracal',
'jammy-caracal/updates': 'jammy-updates/caracal',
'jammy-updates/caracal': 'jammy-updates/caracal',
'caracal/proposed': 'jammy-proposed/caracal',
'jammy-caracal/proposed': 'jammy-proposed/caracal',
'jammy-proposed/caracal': 'jammy-proposed/caracal',

# OVN
'focal-ovn-22.03': 'focal-updates/ovn-22.03',
Expand Down Expand Up @@ -279,6 +287,7 @@
'zed',
'antelope',
'bobcat',
'caracal',
)


Expand Down Expand Up @@ -308,6 +317,7 @@
('kinetic', 'zed'),
('lunar', 'antelope'),
('mantic', 'bobcat'),
('nobel', 'caracal'),
])


Expand Down

0 comments on commit 638f53e

Please sign in to comment.