Skip to content

Commit 9e9ab4e

Browse files
authored
Merge pull request #199 from stackhpc/merge-upstream-master
Merge upstream master
2 parents 5f69655 + ed07505 commit 9e9ab4e

File tree

8 files changed

+30
-24
lines changed

8 files changed

+30
-24
lines changed

etc/kayobe/bifrost.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
###############################################################################
55
# Bifrost installation.
66

7+
# Whether to install Bifrost. Default is true.
8+
#kolla_enable_bifrost:
9+
710
# URL of Bifrost source code repository.
811
#kolla_bifrost_source_url:
912

etc/kayobe/globals.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,15 @@
4646

4747
# OS distribution name. Valid options are "centos", "rocky", "ubuntu". Default
4848
# is "rocky".
49+
# NOTE: Avoids using Ansible facts to be compatible with gather_facts: false
4950
os_distribution: "{{ lookup('pipe', '. /etc/os-release && echo $ID') | trim }}"
5051

5152
# OS release. Valid options are "9-stream" when os_distribution is "centos", or
5253
# "9" when os_distribution is "rocky", or "noble" when os_distribution is
5354
# "ubuntu".
54-
#os_release:
55+
# NOTE: Avoids using Ansible facts to be compatible with gather_facts: false
56+
# yamllint disable-line rule:line-length
57+
os_release: "{{ 'noble' if os_distribution == 'ubuntu' else lookup('pipe', '. /etc/os-release && echo $VERSION_ID | cut -d . -f 1') | trim }}{{ '-stream' if os_distribution == 'centos' else '' }}"
5558

5659
###############################################################################
5760
# Ansible configuration.

etc/kayobe/infra-vms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
3636
# when os_distribution is "rocky",
3737
# or
38-
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-20221206.0.x86_64.qcow2"
38+
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2"
3939
# otherwise.
4040
#infra_vm_root_image:
4141

etc/kayobe/kolla.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@
284284

285285
#kolla_enable_aodh:
286286
#kolla_enable_barbican:
287+
#kolla_enable_bifrost:
287288
#kolla_enable_blazar:
288289
#kolla_enable_ceilometer:
289290
#kolla_enable_ceilometer_horizon_policy_file:

etc/kayobe/openstack.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
###############################################################################
33
# OpenStack release configuration.
44

5-
# Name of the current OpenStack release. Default is "2025.1".
5+
# Name of the current OpenStack release. Default is "master".
66
#openstack_release:
77

8-
# Name of the current OpenStack branch. Default is "stable/2025.1".
8+
# Name of the current OpenStack branch. Default is "master".
99
#openstack_branch:
1010

1111
###############################################################################

etc/kayobe/seed-vm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ seed_vm_vcpus: 1
3737
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
3838
# when os_distribution is "rocky",
3939
# or
40-
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-20221206.0.x86_64.qcow2"
40+
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2"
4141
# otherwise.
4242
#seed_vm_root_image:
4343

etc/kayobe/seed.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,10 @@
9898
# Example:
9999
# seed_containers:
100100
# squid:
101-
# image: "stackhpc/squid:3.5.20-1"
101+
# image: "docker.io/stackhpc/squid"
102102
# pre: "{{ kayobe_env_config_path }}/containers/squid/pre.yml"
103103
# post: "{{ kayobe_env_config_path }}/containers/squid/post.yml"
104+
# tag: "3.5.20-1"
104105
#
105106
#seed_containers:
106107

zuul.d/project.yaml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,41 +4,39 @@
44
check:
55
jobs:
66
- openstack-tox-pep8
7-
- kayobe-overcloud-rocky9
8-
- kayobe-overcloud-centos9s
97
- kayobe-overcloud-ubuntu-noble
10-
- kayobe-overcloud-tls-rocky9
8+
- kayobe-overcloud-ubuntu-noble-podman
119
- kayobe-overcloud-host-configure-rocky9
12-
- kayobe-overcloud-host-configure-centos9s
1310
- kayobe-overcloud-host-configure-ubuntu-noble
14-
- kayobe-overcloud-upgrade-rocky9
15-
- kayobe-overcloud-upgrade-ubuntu-jammy
11+
- kayobe-overcloud-upgrade-ubuntu-noble
1612
- kayobe-seed-rocky9
13+
- kayobe-seed-rocky9-podman
1714
- kayobe-seed-ubuntu-noble
18-
- kayobe-seed-images-rocky9
15+
- kayobe-seed-ubuntu-noble-podman
1916
- kayobe-seed-upgrade-rocky9
20-
- kayobe-seed-upgrade-ubuntu-jammy
21-
- kayobe-seed-vm-rocky9
22-
- kayobe-seed-vm-rocky9-efi
17+
- kayobe-seed-upgrade-ubuntu-noble
18+
- kayobe-seed-vm-rocky9:
19+
voting: false
20+
- kayobe-seed-vm-rocky9-efi:
21+
voting: false
2322
- kayobe-seed-vm-ubuntu-noble
2423
- kayobe-seed-vm-ubuntu-noble-efi
25-
- kayobe-infra-vm-rocky9
24+
- kayobe-infra-vm-rocky9:
25+
voting: false
2626
- kayobe-infra-vm-ubuntu-noble
2727
gate:
2828
jobs:
2929
- openstack-tox-pep8
30-
- kayobe-overcloud-rocky9
3130
- kayobe-overcloud-ubuntu-noble
32-
- kayobe-overcloud-tls-rocky9
31+
- kayobe-overcloud-ubuntu-noble-podman
3332
- kayobe-overcloud-host-configure-rocky9
3433
- kayobe-overcloud-host-configure-ubuntu-noble
35-
- kayobe-overcloud-upgrade-rocky9
36-
- kayobe-overcloud-upgrade-ubuntu-jammy
34+
- kayobe-overcloud-upgrade-ubuntu-noble
3735
- kayobe-seed-rocky9
36+
- kayobe-seed-rocky9-podman
3837
- kayobe-seed-ubuntu-noble
38+
- kayobe-seed-ubuntu-noble-podman
3939
- kayobe-seed-upgrade-rocky9
40-
- kayobe-seed-upgrade-ubuntu-jammy
41-
- kayobe-seed-vm-rocky9
40+
- kayobe-seed-upgrade-ubuntu-noble
4241
- kayobe-seed-vm-ubuntu-noble
43-
- kayobe-infra-vm-rocky9
4442
- kayobe-infra-vm-ubuntu-noble

0 commit comments

Comments
 (0)