Skip to content

Commit 6298e11

Browse files
authored
Merge pull request #473 from stackhpc/upstream/2025.1-2025-09-15
Synchronise 2025.1 with upstream
2 parents 9dfb826 + d20d88c commit 6298e11

File tree

7 files changed

+34
-6
lines changed

7 files changed

+34
-6
lines changed

ansible/inventory/group_vars/all/infra-vms

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ infra_vm_root_format: qcow2
4646
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
4747
# when os_distribution is "rocky",
4848
# or
49-
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2"
49+
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-9-latest.x86_64.qcow2"
5050
# otherwise.
5151
infra_vm_root_image: >-
5252
{%- if os_distribution == 'ubuntu' %}
5353
https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img
5454
{%- elif os_distribution == 'rocky' %}
5555
https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
5656
{%- else -%}
57-
https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2
57+
https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-9-latest.x86_64.qcow2
5858
{%- endif %}
5959

6060
# Capacity of the infra VM data volume.

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-latest.x86_64.qcow2"
38+
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-9-latest.x86_64.qcow2"
3939
# otherwise.
4040
#infra_vm_root_image:
4141

etc/kayobe/kolla.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
# case Quay.io will be used.
8787
#kolla_docker_registry:
8888

89-
# Docker namespace to use for Kolla images. Default is 'kolla'.
89+
# Docker namespace to use for Kolla images. Default is 'openstack.kolla'.
9090
#kolla_docker_namespace:
9191

9292
# Username to use to access a docker registry. Default is not set, in which

etc/kayobe/seed-vm.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-latest.x86_64.qcow2"
38+
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-9-latest.x86_64.qcow2"
3939
# otherwise.
4040
#seed_vm_root_image:
4141

playbooks/kayobe-infra-vm-base/overrides.yml.j2

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@ infra_vm_vcpus: 1
3131
# Reduce the memory footprint of the infra VM.
3232
infra_vm_memory_mb: "{{ 1 * 1024 }}"
3333

34-
# Use cirros rather than CentOS for the VM.
34+
{% if infra_vm_use_cirros | default(true) %}
35+
# Use cirros rather than distribution cloud image for the VM.
3536
infra_vm_bootstrap_user: cirros
3637
infra_vm_root_image: /opt/cache/files/cirros-0.5.3-x86_64-disk.img
38+
{% endif %}
3739

3840
# Cirros doesn't load cdom drivers by default.
3941
vm_configdrive_device: disk

zuul.d/jobs.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,3 +472,26 @@
472472
name: kayobe-infra-vm-ubuntu-noble
473473
parent: kayobe-infra-vm-base
474474
nodeset: kayobe-ubuntu-noble
475+
476+
- job:
477+
name: kayobe-infra-vm-centos9s-cloud-image
478+
parent: kayobe-infra-vm-base
479+
nodeset: kayobe-centos9s
480+
voting: false
481+
vars:
482+
infra_vm_use_cirros: false
483+
484+
- job:
485+
name: kayobe-infra-vm-rocky9-cloud-image
486+
parent: kayobe-infra-vm-base
487+
nodeset: kayobe-rocky9
488+
vars:
489+
infra_vm_use_cirros: false
490+
491+
- job:
492+
name: kayobe-infra-vm-ubuntu-noble-cloud-image
493+
parent: kayobe-infra-vm-base
494+
nodeset: kayobe-ubuntu-noble
495+
voting: false
496+
vars:
497+
infra_vm_use_cirros: false

zuul.d/project.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@
7171

7272
experimental:
7373
jobs:
74+
- kayobe-infra-vm-centos9s-cloud-image
75+
- kayobe-infra-vm-rocky9-cloud-image
76+
- kayobe-infra-vm-ubuntu-noble-cloud-image
7477
- kayobe-overcloud-centos9s
7578
- kayobe-overcloud-host-configure-centos9s
7679
- kayobe-seed-images-centos9s

0 commit comments

Comments
 (0)