Skip to content

Commit 4594fe9

Browse files
authored
Merge pull request #2083 from stackhpc/merge-upstream-2024.1
Fix infra VM NTP configuration by merging upstream unmaintained/2024.1
2 parents b726f44 + a7479ab commit 4594fe9

File tree

18 files changed

+57
-21
lines changed

18 files changed

+57
-21
lines changed

.gitreview

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
host=review.opendev.org
33
port=29418
44
project=openstack/kayobe-config.git
5-
defaultbranch=stable/2024.1
5+
defaultbranch=unmaintained/2024.1

etc/kayobe/apt.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ apt_keys:
3737
filename: ceph.asc
3838

3939
# A list of Apt repositories. Each item is a dict with the following keys:
40+
# * name: the <name>.sources filename part. Optional. Default is 'kayobe' and
41+
# the default filename is 'kayobe.sources'.
4042
# * types: whitespace-separated list of repository types, e.g. deb or deb-src
4143
# (optional, default is 'deb')
4244
# * url: URL of the repository

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: 3 additions & 2 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
###############################################################################

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
#os_distribution:
5050

5151
# OS release. Valid options are "9-stream" when os_distribution is "centos", or
52-
# "9" when os_distribution is "rocky", or "jammy" and "noble" when os_distribution is
53-
# "ubuntu".
52+
# "9" when os_distribution is "rocky", or "jammy" and "noble" (with "jammy"
53+
# being the default) when os_distribution is "ubuntu".
5454
#os_release:
5555

5656
###############################################################################

etc/kayobe/infra-vms.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,16 @@
3131

3232
# Base image for the infra VM root volume. Default is
3333
# "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img"
34+
# when os_distribution is "ubuntu" and distribution_major_version is '22',
35+
# "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
36+
# when os_distribution is "ubuntu" and distribution_major_version is not '22',
3437
# when os_distribution is "ubuntu",
3538
# "https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2"
3639
# when os_distribution is "rocky" and seed_vm_boot_firmware is "efi",
3740
# "https://dl.rockylinux.org/vault/rocky/9.3/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2"
3841
# when os_distribution is "rocky" and seed_vm_boot_firmware is not "efi"
3942
# (default is "bios"), or
40-
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-20221206.0.x86_64.qcow2"
43+
# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2"
4144
# otherwise.
4245
#infra_vm_root_image:
4346

@@ -70,7 +73,8 @@
7073
# Infrastructure VM node configuration.
7174

7275
# User with which to access the infrastructure vm via SSH during bootstrap, in
73-
# order to setup the Kayobe user account.
76+
# order to setup the Kayobe user account. Default is 'cloud-user' if
77+
# os_distribution is set to centos, otherwise 'os_distribution'.
7478
#infra_vm_bootstrap_user:
7579

7680
###############################################################################

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
###############################################################################

0 commit comments

Comments
 (0)