Merge "Add support for Ubuntu Noble Numbat (24.04) LTS"
This commit is contained in:
commit
81b785b169
@ -30,7 +30,7 @@ apt_keys: []
|
|||||||
# * types: whitespace-separated list of repository types, e.g. deb or deb-src
|
# * types: whitespace-separated list of repository types, e.g. deb or deb-src
|
||||||
# (optional, default is 'deb')
|
# (optional, default is 'deb')
|
||||||
# * url: URL of the repository
|
# * url: URL of the repository
|
||||||
# * suites: whitespace-separated list of suites, e.g. jammy (optional, default
|
# * suites: whitespace-separated list of suites, e.g. noble (optional, default
|
||||||
# is ansible_facts.distribution_release)
|
# is ansible_facts.distribution_release)
|
||||||
# * components: whitespace-separated list of components, e.g. main (optional,
|
# * components: whitespace-separated list of components, e.g. main (optional,
|
||||||
# default is 'main')
|
# default is 'main')
|
||||||
|
@ -53,12 +53,12 @@ kayobe_ansible_user: "stack"
|
|||||||
os_distribution: "rocky"
|
os_distribution: "rocky"
|
||||||
|
|
||||||
# OS release. Valid options are "9-stream" when os_distribution is "centos", or
|
# OS release. Valid options are "9-stream" when os_distribution is "centos", or
|
||||||
# "9" when os_distribution is "rocky", or "jammy" when os_distribution is
|
# "9" when os_distribution is "rocky", or "jammy" and "noble" (with "noble"
|
||||||
# "ubuntu".
|
# being the default) when os_distribution is "ubuntu".
|
||||||
os_release: >-
|
os_release: >-
|
||||||
{{ '9-stream' if os_distribution == 'centos'
|
{{ '9-stream' if os_distribution == 'centos'
|
||||||
else '9' if os_distribution == 'rocky'
|
else '9' if os_distribution == 'rocky'
|
||||||
else 'jammy' }}
|
else 'noble' }}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Ansible configuration.
|
# Ansible configuration.
|
||||||
|
@ -41,7 +41,7 @@ infra_vm_root_capacity: 50G
|
|||||||
infra_vm_root_format: qcow2
|
infra_vm_root_format: qcow2
|
||||||
|
|
||||||
# Base image for the infra VM root volume. Default is
|
# Base image for the infra VM root volume. Default is
|
||||||
# "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img"
|
# "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
|
||||||
# when os_distribution is "ubuntu", or
|
# when os_distribution is "ubuntu", or
|
||||||
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
||||||
# when os_distribution is "rocky",
|
# when os_distribution is "rocky",
|
||||||
@ -50,7 +50,7 @@ infra_vm_root_format: qcow2
|
|||||||
# otherwise.
|
# otherwise.
|
||||||
infra_vm_root_image: >-
|
infra_vm_root_image: >-
|
||||||
{%- if os_distribution == 'ubuntu' %}
|
{%- if os_distribution == 'ubuntu' %}
|
||||||
https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img
|
https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img
|
||||||
{%- elif os_distribution == 'rocky' %}
|
{%- elif os_distribution == 'rocky' %}
|
||||||
https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
||||||
{%- else -%}
|
{%- else -%}
|
||||||
|
@ -66,7 +66,7 @@ kolla_base_distro_version_default_map: {
|
|||||||
"centos": "stream9",
|
"centos": "stream9",
|
||||||
"debian": "bullseye",
|
"debian": "bullseye",
|
||||||
"rocky": "9",
|
"rocky": "9",
|
||||||
"ubuntu": "jammy",
|
"ubuntu": "noble",
|
||||||
}
|
}
|
||||||
|
|
||||||
# Kolla base container image distribution version.
|
# Kolla base container image distribution version.
|
||||||
|
@ -41,7 +41,7 @@ seed_vm_root_capacity: 50G
|
|||||||
seed_vm_root_format: qcow2
|
seed_vm_root_format: qcow2
|
||||||
|
|
||||||
# Base image for the seed VM root volume. Default is
|
# Base image for the seed VM root volume. Default is
|
||||||
# "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img"
|
# "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
|
||||||
# when os_distribution is "ubuntu",
|
# when os_distribution is "ubuntu",
|
||||||
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
||||||
# when os_distribution is "rocky",
|
# when os_distribution is "rocky",
|
||||||
@ -50,7 +50,7 @@ seed_vm_root_format: qcow2
|
|||||||
# otherwise.
|
# otherwise.
|
||||||
seed_vm_root_image: >-
|
seed_vm_root_image: >-
|
||||||
{%- if os_distribution == 'ubuntu' %}
|
{%- if os_distribution == 'ubuntu' %}
|
||||||
https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img
|
https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img
|
||||||
{%- elif os_distribution == 'rocky' %}
|
{%- elif os_distribution == 'rocky' %}
|
||||||
https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
||||||
{%- else -%}
|
{%- else -%}
|
||||||
|
@ -33,7 +33,7 @@ apt_keys: []
|
|||||||
# * types: whitespace-separated list of repository types, e.g. deb or deb-src
|
# * types: whitespace-separated list of repository types, e.g. deb or deb-src
|
||||||
# (optional, default is 'deb')
|
# (optional, default is 'deb')
|
||||||
# * url: URL of the repository
|
# * url: URL of the repository
|
||||||
# * suites: whitespace-separated list of suites, e.g. jammy (optional, default
|
# * suites: whitespace-separated list of suites, e.g. noble (optional, default
|
||||||
# is ansible_facts.distribution_release)
|
# is ansible_facts.distribution_release)
|
||||||
# * components: whitespace-separated list of components, e.g. main (optional,
|
# * components: whitespace-separated list of components, e.g. main (optional,
|
||||||
# default is 'main')
|
# default is 'main')
|
||||||
|
@ -369,7 +369,7 @@ items:
|
|||||||
* ``types``: whitespace-separated list of repository types, e.g. ``deb`` or
|
* ``types``: whitespace-separated list of repository types, e.g. ``deb`` or
|
||||||
``deb-src`` (optional, default is ``deb``)
|
``deb-src`` (optional, default is ``deb``)
|
||||||
* ``url``: URL of the repository
|
* ``url``: URL of the repository
|
||||||
* ``suites``: whitespace-separated list of suites, e.g. ``jammy`` (optional,
|
* ``suites``: whitespace-separated list of suites, e.g. ``noble`` (optional,
|
||||||
default is ``ansible_facts.distribution_release``)
|
default is ``ansible_facts.distribution_release``)
|
||||||
* ``components``: whitespace-separated list of components, e.g. ``main``
|
* ``components``: whitespace-separated list of components, e.g. ``main``
|
||||||
(optional, default is ``main``)
|
(optional, default is ``main``)
|
||||||
@ -389,10 +389,10 @@ For example, the following configuration defines a single Apt repository:
|
|||||||
apt_repositories:
|
apt_repositories:
|
||||||
- types: deb
|
- types: deb
|
||||||
url: https://example.com/repo
|
url: https://example.com/repo
|
||||||
suites: jammy
|
suites: noble
|
||||||
components: all
|
components: all
|
||||||
|
|
||||||
In the following example, the Ubuntu Jammy 22.04 repositories are consumed from
|
In the following example, the Ubuntu Noble 24.04 repositories are consumed from
|
||||||
a local package mirror. The ``apt_disable_sources_list`` variable is set to
|
a local package mirror. The ``apt_disable_sources_list`` variable is set to
|
||||||
``true``, which disables all repositories in ``/etc/apt/sources.list``,
|
``true``, which disables all repositories in ``/etc/apt/sources.list``,
|
||||||
including the default Ubuntu ones.
|
including the default Ubuntu ones.
|
||||||
@ -402,10 +402,10 @@ including the default Ubuntu ones.
|
|||||||
|
|
||||||
apt_repositories:
|
apt_repositories:
|
||||||
- url: http://mirror.example.com/ubuntu/
|
- url: http://mirror.example.com/ubuntu/
|
||||||
suites: jammy jammy-updates
|
suites: noble noble-updates
|
||||||
components: main restricted universe multiverse
|
components: main restricted universe multiverse
|
||||||
- url: http://mirror.example.com/ubuntu/
|
- url: http://mirror.example.com/ubuntu/
|
||||||
suites: jammy-security
|
suites: noble-security
|
||||||
components: main restricted universe multiverse
|
components: main restricted universe multiverse
|
||||||
|
|
||||||
apt_disable_sources_list: true
|
apt_disable_sources_list: true
|
||||||
@ -442,7 +442,7 @@ that is signed by the key.
|
|||||||
apt_repositories:
|
apt_repositories:
|
||||||
- types: deb
|
- types: deb
|
||||||
url: https://example.com/repo
|
url: https://example.com/repo
|
||||||
suites: jammy
|
suites: noble
|
||||||
components: all
|
components: all
|
||||||
signed_by: example-key.asc
|
signed_by: example-key.asc
|
||||||
|
|
||||||
@ -484,7 +484,7 @@ Some repositories may require authentication using HTTP basic auth. Apt
|
|||||||
supports specifying credentials in URLs in ``sources.list`` files, but these
|
supports specifying credentials in URLs in ``sources.list`` files, but these
|
||||||
files must be world-readable. A more secure setup involves writing credentials
|
files must be world-readable. A more secure setup involves writing credentials
|
||||||
to `auth.conf
|
to `auth.conf
|
||||||
<https://manpages.ubuntu.com/manpages/jammy/man5/apt_auth.conf.5.html>`__
|
<https://manpages.ubuntu.com/manpages/noble/man5/apt_auth.conf.5.html>`__
|
||||||
files which can have more restrictive permissions.
|
files which can have more restrictive permissions.
|
||||||
|
|
||||||
Auth configuration is defined by the ``apt_auth`` variable. The format is a
|
Auth configuration is defined by the ``apt_auth`` variable. The format is a
|
||||||
|
@ -16,7 +16,7 @@ or ``rocky`` or ``ubuntu``, and defaults to ``rocky``.
|
|||||||
The ``os_release`` variable in ``etc/kayobe/globals.yml`` can be used to set
|
The ``os_release`` variable in ``etc/kayobe/globals.yml`` can be used to set
|
||||||
the release of the OS. When ``os_distribution`` is set to ``centos`` it may be
|
the release of the OS. When ``os_distribution`` is set to ``centos`` it may be
|
||||||
set to ``9-stream``, and this is its default value. When ``os_distribution`` is
|
set to ``9-stream``, and this is its default value. When ``os_distribution`` is
|
||||||
set to ``ubuntu`` it may be set to ``jammy``, and this is its default value.
|
set to ``ubuntu`` it may be set to ``noble``, and this is its default value.
|
||||||
When ``os_distribution`` is set to ``rocky`` it may be set to ``9``, and this
|
When ``os_distribution`` is set to ``rocky`` it may be set to ``9``, and this
|
||||||
is its default value.
|
is its default value.
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@ control host:
|
|||||||
- CentOS Stream 9 (since Zed 13.0.0 release)
|
- CentOS Stream 9 (since Zed 13.0.0 release)
|
||||||
- Rocky Linux 9 (since Zed 13.0.0 release)
|
- Rocky Linux 9 (since Zed 13.0.0 release)
|
||||||
- Ubuntu Jammy 22.04 (since Zed 13.0.0 release)
|
- Ubuntu Jammy 22.04 (since Zed 13.0.0 release)
|
||||||
|
- Ubuntu Noble 24.04 (since Dalmatian 17.0.0 release)
|
||||||
|
|
||||||
See the :doc:`support matrix <support-matrix>` for details of supported
|
See the :doc:`support matrix <support-matrix>` for details of supported
|
||||||
Operating Systems for other hosts.
|
Operating Systems for other hosts.
|
||||||
|
@ -22,8 +22,8 @@ OpenStack using Kolla, Ansible and Kayobe. The guide makes use of
|
|||||||
baremetal environment running on a single hypervisor.
|
baremetal environment running on a single hypervisor.
|
||||||
|
|
||||||
To complete the walkthrough you will require a baremetal or VM hypervisor
|
To complete the walkthrough you will require a baremetal or VM hypervisor
|
||||||
running CentOS Stream 9, Rocky Linux 9 or Ubuntu Jammy 22.04 (since Zed 13.0.0) with at least
|
running CentOS Stream 9, Rocky Linux 9 or Ubuntu Noble 24.04 (since Dalmatian
|
||||||
32GB RAM & 80GB disk space. Preparing the deployment can take some time -
|
17.0.0) with at least 32GB RAM & 80GB disk space. Preparing the deployment can
|
||||||
where possible it is beneficial to snapshot the hypervisor. We advise making a
|
take some time - where possible it is beneficial to snapshot the hypervisor. We
|
||||||
snapshot after creating the initial 'seed' VM as this will make additional
|
advise making a snapshot after creating the initial 'seed' VM as this will make
|
||||||
deployments significantly faster.
|
additional deployments significantly faster.
|
||||||
|
@ -11,6 +11,7 @@ Kayobe supports the following host Operating Systems (OS):
|
|||||||
|
|
||||||
* Rocky Linux 9 (since Zed 13.0.0 release)
|
* Rocky Linux 9 (since Zed 13.0.0 release)
|
||||||
* Ubuntu Jammy 22.04 (since Zed 13.0.0 release)
|
* Ubuntu Jammy 22.04 (since Zed 13.0.0 release)
|
||||||
|
* Ubuntu Noble 24.04 (since Dalmatian 17.0.0 release)
|
||||||
|
|
||||||
In addition to that CentOS Stream 9 host OS is functional, but not officially
|
In addition to that CentOS Stream 9 host OS is functional, but not officially
|
||||||
supported. Kolla does not publish CentOS Stream 9 images to Docker Hub/Quay.io,
|
supported. Kolla does not publish CentOS Stream 9 images to Docker Hub/Quay.io,
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
# * types: whitespace-separated list of repository types, e.g. deb or deb-src
|
# * types: whitespace-separated list of repository types, e.g. deb or deb-src
|
||||||
# (optional, default is 'deb')
|
# (optional, default is 'deb')
|
||||||
# * url: URL of the repository
|
# * url: URL of the repository
|
||||||
# * suites: whitespace-separated list of suites, e.g. jammy (optional, default
|
# * suites: whitespace-separated list of suites, e.g. noble (optional, default
|
||||||
# is ansible_facts.distribution_release)
|
# is ansible_facts.distribution_release)
|
||||||
# * components: whitespace-separated list of components, e.g. main (optional,
|
# * components: whitespace-separated list of components, e.g. main (optional,
|
||||||
# default is 'main')
|
# default is 'main')
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
#os_distribution:
|
#os_distribution:
|
||||||
|
|
||||||
# OS release. Valid options are "9-stream" when os_distribution is "centos", or
|
# OS release. Valid options are "9-stream" when os_distribution is "centos", or
|
||||||
# "9" when os_distribution is "rocky", or "jammy" when os_distribution is
|
# "9" when os_distribution is "rocky", or "noble" when os_distribution is
|
||||||
# "ubuntu".
|
# "ubuntu".
|
||||||
#os_release:
|
#os_release:
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
#infra_vm_root_format:
|
#infra_vm_root_format:
|
||||||
|
|
||||||
# Base image for the infra VM root volume. Default is
|
# Base image for the infra VM root volume. Default is
|
||||||
# "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img"
|
# "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
|
||||||
# when os_distribution is "ubuntu", or
|
# when os_distribution is "ubuntu", or
|
||||||
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
||||||
# when os_distribution is "rocky",
|
# when os_distribution is "rocky",
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
#seed_vm_root_format:
|
#seed_vm_root_format:
|
||||||
|
|
||||||
# Base image for the seed VM root volume. Default is
|
# Base image for the seed VM root volume. Default is
|
||||||
# "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img"
|
# "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
|
||||||
# when os_distribution is "ubuntu",
|
# when os_distribution is "ubuntu",
|
||||||
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
|
||||||
# when os_distribution is "rocky",
|
# when os_distribution is "rocky",
|
||||||
|
@ -138,15 +138,15 @@ apt_keys:
|
|||||||
- url: https://packages.treasuredata.com/GPG-KEY-td-agent
|
- url: https://packages.treasuredata.com/GPG-KEY-td-agent
|
||||||
filename: td-agent.asc
|
filename: td-agent.asc
|
||||||
apt_repositories:
|
apt_repositories:
|
||||||
# Ubuntu jammy repositories.
|
# Ubuntu noble repositories.
|
||||||
- url: "http://{{ zuul_site_mirror_fqdn }}/ubuntu/"
|
- url: "http://{{ zuul_site_mirror_fqdn }}/ubuntu/"
|
||||||
suites: jammy jammy-updates
|
suites: noble noble-updates
|
||||||
components: main restricted universe multiverse
|
components: main universe
|
||||||
- url: "http://{{ zuul_site_mirror_fqdn }}/ubuntu/"
|
- url: "http://{{ zuul_site_mirror_fqdn }}/ubuntu/"
|
||||||
suites: jammy-security
|
suites: noble-security
|
||||||
components: main restricted universe multiverse
|
components: main universe
|
||||||
# Treasuredata repository.
|
# Treasuredata repository.
|
||||||
- url: http://packages.treasuredata.com/4/ubuntu/jammy/
|
- url: http://packages.treasuredata.com/5/ubuntu/noble/
|
||||||
components: contrib
|
components: contrib
|
||||||
signed_by: td-agent.asc
|
signed_by: td-agent.asc
|
||||||
apt_preferences:
|
apt_preferences:
|
||||||
|
6
releasenotes/notes/ubuntu-noble-d60631d22a4f43d5.yaml
Normal file
6
releasenotes/notes/ubuntu-noble-d60631d22a4f43d5.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
Adds support for Ubuntu Noble Numbat (24.04) LTS as a host and container
|
||||||
|
Operating System for seed, seed hypervisor and overcloud hosts.
|
||||||
|
Default Ubuntu version has been changed to Ubuntu Noble (24.04) LTS.
|
@ -42,8 +42,8 @@ roles:
|
|||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
- src: stackhpc.libvirt-host
|
- src: stackhpc.libvirt-host
|
||||||
version: v1.12.1
|
version: v1.12.1
|
||||||
- name: stackhpc.libvirt-vm
|
- src: stackhpc.libvirt-vm
|
||||||
version: v1.16.1
|
version: v1.16.2
|
||||||
- src: stackhpc.luks
|
- src: stackhpc.luks
|
||||||
version: 0.4.2
|
version: 0.4.2
|
||||||
- src: stackhpc.os-ironic-state
|
- src: stackhpc.os-ironic-state
|
||||||
|
@ -131,9 +131,9 @@
|
|||||||
nodeset: kayobe-rocky9
|
nodeset: kayobe-rocky9
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-overcloud-ubuntu-jammy
|
name: kayobe-overcloud-ubuntu-noble
|
||||||
parent: kayobe-overcloud-base
|
parent: kayobe-overcloud-base
|
||||||
nodeset: kayobe-ubuntu-jammy
|
nodeset: kayobe-ubuntu-noble
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-overcloud-tls-base
|
name: kayobe-overcloud-tls-base
|
||||||
@ -210,9 +210,9 @@
|
|||||||
nodeset: kayobe-rocky9
|
nodeset: kayobe-rocky9
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-seed-ubuntu-jammy
|
name: kayobe-seed-ubuntu-noble
|
||||||
parent: kayobe-seed-base
|
parent: kayobe-seed-base
|
||||||
nodeset: kayobe-ubuntu-jammy
|
nodeset: kayobe-ubuntu-noble
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-seed-images-base
|
name: kayobe-seed-images-base
|
||||||
@ -244,9 +244,9 @@
|
|||||||
# This job builds default overcloud images but skips the build of bifrost seed
|
# This job builds default overcloud images but skips the build of bifrost seed
|
||||||
# images which are currently timing out on Ubuntu Jammy.
|
# images which are currently timing out on Ubuntu Jammy.
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-seed-images-ubuntu-jammy
|
name: kayobe-seed-images-ubuntu-noble
|
||||||
parent: kayobe-seed-images-base
|
parent: kayobe-seed-images-base
|
||||||
nodeset: kayobe-ubuntu-jammy
|
nodeset: kayobe-ubuntu-noble
|
||||||
vars:
|
vars:
|
||||||
seed_container_image_regex: "^base"
|
seed_container_image_regex: "^base"
|
||||||
|
|
||||||
@ -273,9 +273,9 @@
|
|||||||
nodeset: kayobe-rocky9
|
nodeset: kayobe-rocky9
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-overcloud-host-configure-ubuntu-jammy
|
name: kayobe-overcloud-host-configure-ubuntu-noble
|
||||||
parent: kayobe-overcloud-host-configure-base
|
parent: kayobe-overcloud-host-configure-base
|
||||||
nodeset: kayobe-ubuntu-jammy
|
nodeset: kayobe-ubuntu-noble
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-seed-upgrade-base
|
name: kayobe-seed-upgrade-base
|
||||||
@ -333,9 +333,9 @@
|
|||||||
nodeset: kayobe-rocky9
|
nodeset: kayobe-rocky9
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-seed-vm-ubuntu-jammy
|
name: kayobe-seed-vm-ubuntu-noble
|
||||||
parent: kayobe-seed-vm-base
|
parent: kayobe-seed-vm-base
|
||||||
nodeset: kayobe-ubuntu-jammy
|
nodeset: kayobe-ubuntu-noble
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-seed-vm-efi-base
|
name: kayobe-seed-vm-efi-base
|
||||||
@ -358,9 +358,9 @@
|
|||||||
nodeset: kayobe-rocky9
|
nodeset: kayobe-rocky9
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-seed-vm-ubuntu-jammy-efi
|
name: kayobe-seed-vm-ubuntu-noble-efi
|
||||||
parent: kayobe-seed-vm-efi-base
|
parent: kayobe-seed-vm-efi-base
|
||||||
nodeset: kayobe-ubuntu-jammy
|
nodeset: kayobe-ubuntu-noble
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-infra-vm-base
|
name: kayobe-infra-vm-base
|
||||||
@ -386,6 +386,6 @@
|
|||||||
nodeset: kayobe-rocky9
|
nodeset: kayobe-rocky9
|
||||||
|
|
||||||
- job:
|
- job:
|
||||||
name: kayobe-infra-vm-ubuntu-jammy
|
name: kayobe-infra-vm-ubuntu-noble
|
||||||
parent: kayobe-infra-vm-base
|
parent: kayobe-infra-vm-base
|
||||||
nodeset: kayobe-ubuntu-jammy
|
nodeset: kayobe-ubuntu-noble
|
||||||
|
@ -16,3 +16,9 @@
|
|||||||
nodes:
|
nodes:
|
||||||
- name: primary
|
- name: primary
|
||||||
label: ubuntu-jammy
|
label: ubuntu-jammy
|
||||||
|
|
||||||
|
- nodeset:
|
||||||
|
name: kayobe-ubuntu-noble
|
||||||
|
nodes:
|
||||||
|
- name: primary
|
||||||
|
label: ubuntu-noble
|
||||||
|
@ -13,46 +13,46 @@
|
|||||||
- kayobe-tox-molecule
|
- kayobe-tox-molecule
|
||||||
- kayobe-overcloud-rocky9
|
- kayobe-overcloud-rocky9
|
||||||
- kayobe-overcloud-centos9s
|
- kayobe-overcloud-centos9s
|
||||||
- kayobe-overcloud-ubuntu-jammy
|
- kayobe-overcloud-ubuntu-noble
|
||||||
- kayobe-overcloud-tls-rocky9
|
- kayobe-overcloud-tls-rocky9
|
||||||
- kayobe-overcloud-host-configure-rocky9
|
- kayobe-overcloud-host-configure-rocky9
|
||||||
- kayobe-overcloud-host-configure-centos9s
|
- kayobe-overcloud-host-configure-centos9s
|
||||||
- kayobe-overcloud-host-configure-ubuntu-jammy
|
- kayobe-overcloud-host-configure-ubuntu-noble
|
||||||
- kayobe-overcloud-upgrade-rocky9
|
- kayobe-overcloud-upgrade-rocky9
|
||||||
- kayobe-overcloud-upgrade-ubuntu-jammy
|
- kayobe-overcloud-upgrade-ubuntu-jammy
|
||||||
- kayobe-seed-rocky9
|
- kayobe-seed-rocky9
|
||||||
- kayobe-seed-ubuntu-jammy
|
- kayobe-seed-ubuntu-noble
|
||||||
- kayobe-seed-images-rocky9
|
- kayobe-seed-images-rocky9
|
||||||
- kayobe-seed-upgrade-rocky9
|
- kayobe-seed-upgrade-rocky9
|
||||||
- kayobe-seed-upgrade-ubuntu-jammy
|
- kayobe-seed-upgrade-ubuntu-jammy
|
||||||
- kayobe-seed-vm-rocky9
|
- kayobe-seed-vm-rocky9
|
||||||
- kayobe-seed-vm-rocky9-efi
|
- kayobe-seed-vm-rocky9-efi
|
||||||
- kayobe-seed-vm-ubuntu-jammy
|
- kayobe-seed-vm-ubuntu-noble
|
||||||
- kayobe-seed-vm-ubuntu-jammy-efi
|
- kayobe-seed-vm-ubuntu-noble-efi
|
||||||
- kayobe-infra-vm-rocky9
|
- kayobe-infra-vm-rocky9
|
||||||
- kayobe-infra-vm-ubuntu-jammy
|
- kayobe-infra-vm-ubuntu-noble
|
||||||
gate:
|
gate:
|
||||||
jobs:
|
jobs:
|
||||||
- kayobe-tox-ansible-syntax
|
- kayobe-tox-ansible-syntax
|
||||||
- kayobe-tox-ansible
|
- kayobe-tox-ansible
|
||||||
- kayobe-tox-molecule
|
- kayobe-tox-molecule
|
||||||
- kayobe-overcloud-rocky9
|
- kayobe-overcloud-rocky9
|
||||||
- kayobe-overcloud-ubuntu-jammy
|
- kayobe-overcloud-ubuntu-noble
|
||||||
- kayobe-overcloud-tls-rocky9
|
- kayobe-overcloud-tls-rocky9
|
||||||
- kayobe-overcloud-host-configure-rocky9
|
- kayobe-overcloud-host-configure-rocky9
|
||||||
- kayobe-overcloud-host-configure-ubuntu-jammy
|
- kayobe-overcloud-host-configure-ubuntu-noble
|
||||||
- kayobe-overcloud-upgrade-rocky9
|
- kayobe-overcloud-upgrade-rocky9
|
||||||
- kayobe-overcloud-upgrade-ubuntu-jammy
|
- kayobe-overcloud-upgrade-ubuntu-jammy
|
||||||
- kayobe-seed-rocky9
|
- kayobe-seed-rocky9
|
||||||
- kayobe-seed-ubuntu-jammy
|
- kayobe-seed-ubuntu-noble
|
||||||
- kayobe-seed-upgrade-rocky9
|
- kayobe-seed-upgrade-rocky9
|
||||||
- kayobe-seed-upgrade-ubuntu-jammy
|
- kayobe-seed-upgrade-ubuntu-jammy
|
||||||
- kayobe-seed-vm-rocky9
|
- kayobe-seed-vm-rocky9
|
||||||
- kayobe-seed-vm-ubuntu-jammy
|
- kayobe-seed-vm-ubuntu-noble
|
||||||
- kayobe-infra-vm-rocky9
|
- kayobe-infra-vm-rocky9
|
||||||
- kayobe-infra-vm-ubuntu-jammy
|
- kayobe-infra-vm-ubuntu-noble
|
||||||
|
|
||||||
experimental:
|
experimental:
|
||||||
jobs:
|
jobs:
|
||||||
- kayobe-seed-images-centos9s
|
- kayobe-seed-images-centos9s
|
||||||
- kayobe-seed-images-ubuntu-jammy
|
- kayobe-seed-images-ubuntu-noble
|
||||||
|
Loading…
Reference in New Issue
Block a user