Skip to content

Commit 5e3d7c3

Browse files
committed
Merge branch 'stackhpc/2025.1' into sync-2025.1
2 parents f4bb9e1 + de9d488 commit 5e3d7c3

111 files changed

Lines changed: 1623 additions & 1071 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[volume]
2+
catalog_type = volumev3

.automation.conf/tempest/tempest-ci-aio.overrides.conf

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tempest-aio.overrides.conf

.github/stackhpc-pull-request-path-filters.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ aio: &aio
1616
- 'etc/kayobe/ansible/requirements.yml'
1717
- 'etc/kayobe/ansible/scripts/aio-init.sh'
1818
- 'etc/kayobe/environments/ci-aio/**'
19+
- 'etc/kayobe/environments/aio/**'
1920
- 'etc/kayobe/inventory/**'
2021
- 'etc/kayobe/kolla/**'
2122
- 'kayobe-env'

.github/workflows/multinode-inputs.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ class Scenario:
3131

3232

3333
ROCKY_9 = OSRelease("rocky", "9", "cloud-user")
34+
ROCKY_10 = OSRelease("rocky", "10", "cloud-user")
3435
UBUNTU_JAMMY = OSRelease("ubuntu", "jammy", "ubuntu")
3536
UBUNTU_NOBLE = OSRelease("ubuntu", "noble", "ubuntu")
3637
# NOTE(upgrade): Add supported releases here.
3738
OPENSTACK_RELEASES = [
38-
OpenStackRelease("2024.1", "2023.1", [ROCKY_9, UBUNTU_JAMMY]),
39+
OpenStackRelease("2024.1", "", [ROCKY_9, UBUNTU_JAMMY]),
3940
OpenStackRelease("2025.1", "2024.1", [ROCKY_9, UBUNTU_NOBLE]),
41+
OpenStackRelease("2025.1", "", [ROCKY_10]),
4042
]
4143
NEUTRON_PLUGINS = ["ovs", "ovn"]
42-
VERSION_HIERARCHY = ["2023.1", "2024.1", "2025.1"]
43-
4444

4545
def main() -> None:
4646

@@ -75,12 +75,12 @@ def random_scenario() -> Scenario:
7575
openstack_release = random.choice(OPENSTACK_RELEASES)
7676
os_release = random.choice(openstack_release.os_releases)
7777
neutron_plugin = random.choice(NEUTRON_PLUGINS)
78-
upgrade = "major" if random.random() > 0.6 else "none"
78+
upgrade = "major" if (random.random() > 0.6 and openstack_release.previous_version != "") else "none"
7979
return Scenario(openstack_release, os_release, neutron_plugin, upgrade)
8080

8181

8282
def get_branch(version: str) -> str:
83-
return f"stackhpc/{version}"
83+
return f"stackhpc/{version}" if version != "" else ""
8484

8585

8686
def get_tkm_version(version: str) -> str:

.github/workflows/overcloud-host-image-promote.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010
rocky9-aarch64:
1111
description: Promote Rocky Linux 9 aarch64
1212
type: boolean
13-
default: false
13+
default: true
1414
rocky10:
1515
description: Promote Rocky Linux 10
1616
type: boolean
1717
default: true
1818
rocky10-aarch64:
1919
description: Promote Rocky Linux 10 aarch64
2020
type: boolean
21-
default: false
21+
default: true
2222
ubuntu-noble:
2323
description: Promote Ubuntu 24.04 Noble
2424
type: boolean

0 commit comments

Comments
 (0)