Skip to content

Commit 840924f

Browse files
authored
Merge pull request #2079 from stackhpc/merge-upstream-2025.1
Fix infra VM NTP configuration by merging upstream stable/2025.1
2 parents f0d3d9a + ccf40e3 commit 840924f

File tree

13 files changed

+45
-26
lines changed

13 files changed

+45
-26
lines changed

etc/kayobe/bifrost.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
# UUID of the root filesystem contained within the deployment image.
6767
# See below URL for instructions on how to extract it:
6868
# https://docs.openstack.org/ironic/latest/admin/raid.html#image-requirements
69-
# Default is none.
69+
# Default is an empty string.
7070
#kolla_bifrost_deploy_image_rootfs:
7171

7272
# Custom cloud-init user-data passed to deploy of the deployment image.

etc/kayobe/compute.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
###############################################################################
33
# Compute node configuration.
44

5-
# User with which to access the computes via SSH during bootstrap, in order
6-
# to setup the Kayobe user account. Default is {{ os_distribution }}.
5+
# User with which to access the compute nodes via SSH during bootstrap, in
6+
# order to setup the Kayobe user account. Default is 'cloud-user' if
7+
# os_distribution is set to centos, otherwise 'os_distribution'.
78
#compute_bootstrap_user:
89

910
###############################################################################
@@ -208,7 +209,7 @@
208209
#compute_libvirt_ceph_repo_install:
209210

210211
# Ceph package repository release to install on CentOS and Rocky hosts when
211-
# compute_libvirt_ceph_repo_install is true. Default is 'pacific'.
212+
# compute_libvirt_ceph_repo_install is true. Default is 'squid'.
212213
#compute_libvirt_ceph_repo_release:
213214

214215
###############################################################################

etc/kayobe/controllers.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
# Controller node configuration.
44

55
# User with which to access the controllers via SSH during bootstrap, in order
6-
# to setup the Kayobe user account. Default is {{ os_distribution }}.
6+
# to setup the Kayobe user account. Default is 'cloud-user' if os_distribution
7+
# is set to centos, otherwise 'os_distribution'.
78
#controller_bootstrap_user:
89

910
###############################################################################

etc/kayobe/globals.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@
4848
# is "rocky".
4949
#os_distribution:
5050

51-
# OS release. Valid options are "9-stream" when os_distribution is "centos", or
52-
# "9" when os_distribution is "rocky", or "noble" when os_distribution is
53-
# "ubuntu".
51+
# OS release. Valid options are "9-stream" and "10-stream" (with "9-stream"
52+
# being the default) when os_distribution is "centos", "9" and "10" (with "9"
53+
# being the default) when os_distribution is "rocky", or "noble" when
54+
# os_distribution is "ubuntu".
5455
#os_release:
5556

5657
###############################################################################

etc/kayobe/infra-vms.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,14 @@
3131

3232
# Base image for the infra VM root volume. Default is
3333
# "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
34-
# when os_distribution is "ubuntu", or
35-
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
36-
# when os_distribution is "rocky",
37-
# or
38-
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-20221206.0.x86_64.qcow2"
34+
# when os_distribution is "ubuntu",
35+
# "https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2"
36+
# when os_distribution is "rocky" and os_release is "9",
37+
# "https://dl.rockylinux.org/pub/rocky/10/images/x86_64/Rocky-10-GenericCloud-Base.latest.x86_64.qcow2"
38+
# when os_distribution is "rocky" and os_release is "10",
39+
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-9-latest.x86_64.qcow2"
40+
# when os_distribution is "centos" and os_release is "9-stream", or
41+
# "https://cloud.centos.org/centos/10-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-10-latest.x86_64.qcow2"
3942
# otherwise.
4043
#infra_vm_root_image:
4144

@@ -68,7 +71,8 @@
6871
# Infrastructure VM node configuration.
6972

7073
# User with which to access the infrastructure vm via SSH during bootstrap, in
71-
# order to setup the Kayobe user account.
74+
# order to setup the Kayobe user account. Default is 'cloud-user' if
75+
# os_distribution is set to centos, otherwise 'os_distribution'.
7276
#infra_vm_bootstrap_user:
7377

7478
###############################################################################

etc/kayobe/inventory/groups

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ seed
109109
seed
110110
seed-hypervisor
111111
overcloud
112+
infra-vms
112113

113114
###############################################################################
114115
# Baremetal compute node groups.

etc/kayobe/kolla.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ kolla_base_distro_and_version: "{{ kolla_base_distro }}-{{ kolla_base_distro_ver
8585
# case Quay.io will be used.
8686
#kolla_docker_registry:
8787

88-
# Docker namespace to use for Kolla images. Default is 'kolla'.
88+
# Docker namespace to use for Kolla images. Default is 'openstack.kolla'.
8989
kolla_docker_namespace: stackhpc
9090

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

etc/kayobe/monitoring.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
# Monitoring node configuration.
44

55
# User with which to access the monitoring nodes via SSH during bootstrap, in
6-
# order to setup the Kayobe user account.
6+
# order to setup the Kayobe user account. Default is 'cloud-user' if
7+
# os_distribution is set to centos, otherwise 'os_distribution'.
78
#monitoring_bootstrap_user:
89

910
###############################################################################

etc/kayobe/seed-hypervisor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
# Seed hypervisor node configuration.
44

55
# User with which to access the seed hypervisor via SSH during bootstrap, in
6-
# order to setup the Kayobe user account. Default is {{ os_distribution }}.
6+
# order to setup the Kayobe user account. Default is 'cloud-user' if
7+
# os_distribution is set to centos, otherwise 'os_distribution'.
78
#seed_hypervisor_bootstrap_user:
89

910
###############################################################################

etc/kayobe/seed-vm.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,12 @@
3333
# "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
3434
# when os_distribution is "ubuntu",
3535
# "https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2"
36-
# when os_distribution is "rocky" and seed_vm_boot_firmware is "efi",
37-
# "https://dl.rockylinux.org/vault/rocky/9.3/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2"
38-
# when os_distribution is "rocky" and seed_vm_boot_firmware is not "efi"
39-
# (default is "bios"), or
40-
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-20221206.0.x86_64.qcow2"
36+
# when os_distribution is "rocky" and os_release is "9",
37+
# "https://dl.rockylinux.org/pub/rocky/10/images/x86_64/Rocky-10-GenericCloud-Base.latest.x86_64.qcow2"
38+
# when os_distribution is "rocky" and os_release is "10",
39+
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-9-latest.x86_64.qcow2"
40+
# when os_distribution is "centos" and os_release is "9-stream", or
41+
# "https://cloud.centos.org/centos/10-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-10-latest.x86_64.qcow2"
4142
# otherwise.
4243
#seed_vm_root_image:
4344

0 commit comments

Comments
 (0)