Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Openstack Bobcat support #154

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions common/ch_channel_map/any_series
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# newer openstack release names map to a release number
declare -A RELNAME_MAP=(
[antelope]=2023.1
[bobcat]=2023.2
)
for c in ${OST_CHARMS[@]}; do
CHARM_CHANNEL[$c]=${RELNAME_MAP[$release]:-$release}/edge
Expand Down
2 changes: 1 addition & 1 deletion common/ch_channel_map/test-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ for release in ussuri victoria wallaby xena yoga; do
done

series=jammy
for release in yoga zed antelope; do
for release in yoga zed antelope bobcat; do
${basedir}/test-channel-map.sh $series $release > ${output_prefix}$series-$release.txt
done
2 changes: 2 additions & 0 deletions common/openstack_release_info
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ declare -A nonlts=( [hirsute]=wallaby
[impish]=xena
[kinetic]=zed
[lunar]=antelope
[mantic]=bobcat
)
# NOTE: must be kept up-to-date with ALL versions of openstack.
declare -A os_releases=( [icehouse]=0
Expand All @@ -47,6 +48,7 @@ declare -A os_releases=( [icehouse]=0
[yoga]=16
[zed]=17
[antelope]=18
[bobcat]=19
)
# Reverse lookups (revision to series)
declare -A lts_rev=()
Expand Down