We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a82bb2 commit 5daecc0Copy full SHA for 5daecc0
tools/kolla-images.py
@@ -99,7 +99,7 @@
99
# List of supported base distributions and versions.
100
SUPPORTED_BASE_DISTROS = [
101
"rocky-9",
102
- "ubuntu-jammy",
+ "ubuntu-noble",
103
]
104
105
@@ -230,7 +230,7 @@ def get_openstack_release() -> str:
230
if key.strip() == "defaultbranch":
231
value = value.strip()
232
if value == "master":
233
- return value
+ return value[:]
234
for prefix in ("stable/", "unmaintained/"):
235
if value.startswith(prefix):
236
return value[len(prefix):]
0 commit comments