diff --git a/ansible/inventory/group_vars/all/apt b/ansible/inventory/group_vars/all/apt
index 89c0999f3c882153d791426b98038fedb12030a8..5285fba6c4342d398dfdb558fee7858d962cabc3 100644
--- a/ansible/inventory/group_vars/all/apt
+++ b/ansible/inventory/group_vars/all/apt
@@ -30,7 +30,7 @@ apt_keys: []
 # * types: whitespace-separated list of repository types, e.g. deb or deb-src
 #   (optional, default is 'deb')
 # * 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)
 # * components: whitespace-separated list of components, e.g. main (optional,
 #   default is 'main')
diff --git a/ansible/inventory/group_vars/all/globals b/ansible/inventory/group_vars/all/globals
index 4f0fa02a28e12e4d74b3710a7159d4c09d04e467..3df1218df1eea92bfd39653e06e7b7f07048d82c 100644
--- a/ansible/inventory/group_vars/all/globals
+++ b/ansible/inventory/group_vars/all/globals
@@ -53,12 +53,12 @@ kayobe_ansible_user: "stack"
 os_distribution: "rocky"
 
 # 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
-# "ubuntu".
+# "9" when os_distribution is "rocky", or "jammy" and "noble" (with "noble"
+# being the default) when os_distribution is "ubuntu".
 os_release: >-
   {{ '9-stream' if os_distribution == 'centos'
   else '9' if os_distribution == 'rocky'
-  else 'jammy' }}
+  else 'noble' }}
 
 ###############################################################################
 # Ansible configuration.
diff --git a/ansible/inventory/group_vars/all/infra-vms b/ansible/inventory/group_vars/all/infra-vms
index 85fb396023565c0563196d7b0690e75cfb8b804a..991a119e74dd8510eb90d4fb427a29de8171339a 100644
--- a/ansible/inventory/group_vars/all/infra-vms
+++ b/ansible/inventory/group_vars/all/infra-vms
@@ -41,7 +41,7 @@ infra_vm_root_capacity: 50G
 infra_vm_root_format: qcow2
 
 # 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
 # https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
 # when os_distribution is "rocky",
@@ -50,7 +50,7 @@ infra_vm_root_format: qcow2
 # otherwise.
 infra_vm_root_image: >-
   {%- 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' %}
   https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
   {%- else -%}
diff --git a/ansible/inventory/group_vars/all/kolla b/ansible/inventory/group_vars/all/kolla
index 291171abdfc418bbdd9bcc1c81bee79c8e73304f..d9f7385b88ab86a5abd246a7e6c90ef229f5edc4 100644
--- a/ansible/inventory/group_vars/all/kolla
+++ b/ansible/inventory/group_vars/all/kolla
@@ -66,7 +66,7 @@ kolla_base_distro_version_default_map: {
   "centos": "stream9",
   "debian": "bullseye",
   "rocky": "9",
-  "ubuntu": "jammy",
+  "ubuntu": "noble",
 }
 
 # Kolla base container image distribution version.
diff --git a/ansible/inventory/group_vars/all/seed-vm b/ansible/inventory/group_vars/all/seed-vm
index 0f8368bf6aa40a1effb4d7f26df4092be275b7ac..9687e6de3eb3c707bfa0eed863d516e83a7524d7 100644
--- a/ansible/inventory/group_vars/all/seed-vm
+++ b/ansible/inventory/group_vars/all/seed-vm
@@ -41,7 +41,7 @@ seed_vm_root_capacity: 50G
 seed_vm_root_format: qcow2
 
 # 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",
 # https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
 # when os_distribution is "rocky",
@@ -50,7 +50,7 @@ seed_vm_root_format: qcow2
 # otherwise.
 seed_vm_root_image: >-
   {%- 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' %}
   https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
   {%- else -%}
diff --git a/ansible/roles/apt/defaults/main.yml b/ansible/roles/apt/defaults/main.yml
index 3eb4eed744fc89e87c7a75c522eabf38e1b82330..5851d1908c10810cb550c7ccb8097182754b8690 100644
--- a/ansible/roles/apt/defaults/main.yml
+++ b/ansible/roles/apt/defaults/main.yml
@@ -33,7 +33,7 @@ apt_keys: []
 # * types: whitespace-separated list of repository types, e.g. deb or deb-src
 #   (optional, default is 'deb')
 # * 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)
 # * components: whitespace-separated list of components, e.g. main (optional,
 #   default is 'main')
diff --git a/doc/source/configuration/reference/hosts.rst b/doc/source/configuration/reference/hosts.rst
index 4a0530345b3c2b1f4aa9fd0cb50dae20cab74805..ece93ac97c976b7a8fbee9e008299aaf7745faa6 100644
--- a/doc/source/configuration/reference/hosts.rst
+++ b/doc/source/configuration/reference/hosts.rst
@@ -369,7 +369,7 @@ items:
 * ``types``: whitespace-separated list of repository types, e.g. ``deb`` or
   ``deb-src`` (optional, default is ``deb``)
 * ``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``)
 * ``components``: whitespace-separated list of components, e.g. ``main``
   (optional, default is ``main``)
@@ -389,10 +389,10 @@ For example, the following configuration defines a single Apt repository:
    apt_repositories:
      - types: deb
        url: https://example.com/repo
-       suites: jammy
+       suites: noble
        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
 ``true``, which disables all repositories in ``/etc/apt/sources.list``,
 including the default Ubuntu ones.
@@ -402,10 +402,10 @@ including the default Ubuntu ones.
 
    apt_repositories:
      - url: http://mirror.example.com/ubuntu/
-       suites: jammy jammy-updates
+       suites: noble noble-updates
        components: main restricted universe multiverse
      - url: http://mirror.example.com/ubuntu/
-       suites: jammy-security
+       suites: noble-security
        components: main restricted universe multiverse
 
    apt_disable_sources_list: true
@@ -442,7 +442,7 @@ that is signed by the key.
    apt_repositories:
      - types: deb
        url: https://example.com/repo
-       suites: jammy
+       suites: noble
        components: all
        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
 files must be world-readable. A more secure setup involves writing credentials
 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.
 
 Auth configuration is defined by the ``apt_auth`` variable. The format is a
diff --git a/doc/source/configuration/reference/os-distribution.rst b/doc/source/configuration/reference/os-distribution.rst
index b1e8fdb3a00afb10ce4daa62c651f1ee97e4ce72..1a3bfb3b1a64131158f51f5794260925bb454a86 100644
--- a/doc/source/configuration/reference/os-distribution.rst
+++ b/doc/source/configuration/reference/os-distribution.rst
@@ -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 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 ``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
 is its default value.
 
diff --git a/doc/source/installation.rst b/doc/source/installation.rst
index aeda94f8170cf43d47f65cbce6d22b4e83aa4d9d..053bff63e6ca3dced7f87f84799b376b8caf1a01 100644
--- a/doc/source/installation.rst
+++ b/doc/source/installation.rst
@@ -18,6 +18,7 @@ control host:
 - CentOS Stream 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 Noble 24.04 (since Dalmatian 17.0.0 release)
 
 See the :doc:`support matrix <support-matrix>` for details of supported
 Operating Systems for other hosts.
diff --git a/doc/source/resources.rst b/doc/source/resources.rst
index 90f3b2b1ae58474031a005fc55ac8f7131fcc2f1..31b67e565d7505c84b90236236ae8f91619e5d8e 100644
--- a/doc/source/resources.rst
+++ b/doc/source/resources.rst
@@ -22,8 +22,8 @@ OpenStack using Kolla, Ansible and Kayobe. The guide makes use of
 baremetal environment running on a single 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
-32GB RAM & 80GB disk space.  Preparing the deployment can take some time -
-where possible it is beneficial to snapshot the hypervisor. We advise making a
-snapshot after creating the initial 'seed' VM as this will make additional
-deployments significantly faster.
+running CentOS Stream 9, Rocky Linux 9 or Ubuntu Noble 24.04 (since Dalmatian
+17.0.0) with at least 32GB RAM & 80GB disk space.  Preparing the deployment can
+take some time - where possible it is beneficial to snapshot the hypervisor. We
+advise making a snapshot after creating the initial 'seed' VM as this will make
+additional deployments significantly faster.
diff --git a/doc/source/support-matrix.rst b/doc/source/support-matrix.rst
index f76f876dbf93ea95dd3b7c890359d0577f2c9366..f3ad926ef67e1c9c377cad723b6289ccd5c4ea3a 100644
--- a/doc/source/support-matrix.rst
+++ b/doc/source/support-matrix.rst
@@ -11,6 +11,7 @@ Kayobe supports the following host Operating Systems (OS):
 
 * Rocky Linux 9 (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
 supported. Kolla does not publish CentOS Stream 9 images to Docker Hub/Quay.io,
diff --git a/etc/kayobe/apt.yml b/etc/kayobe/apt.yml
index 3574b1824ffd3dc07043d5380af1dfad6b37a68a..9302675c3c8e13b50e797ccc33081bcc4f7a69df 100644
--- a/etc/kayobe/apt.yml
+++ b/etc/kayobe/apt.yml
@@ -30,7 +30,7 @@
 # * types: whitespace-separated list of repository types, e.g. deb or deb-src
 #   (optional, default is 'deb')
 # * 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)
 # * components: whitespace-separated list of components, e.g. main (optional,
 #   default is 'main')
diff --git a/etc/kayobe/globals.yml b/etc/kayobe/globals.yml
index a97f74d1a9d96f87ddb6a7e71bff85a95fb164cd..93ebdb4f940c0ae281a833f7d7de590d56400523 100644
--- a/etc/kayobe/globals.yml
+++ b/etc/kayobe/globals.yml
@@ -49,7 +49,7 @@
 #os_distribution:
 
 # 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".
 #os_release:
 
diff --git a/etc/kayobe/infra-vms.yml b/etc/kayobe/infra-vms.yml
index 23ab7b8aecacf8a1bddcf379816dc74c4c100079..cbfa34eae2fc77707c2cebb5c282b5035f238ab4 100644
--- a/etc/kayobe/infra-vms.yml
+++ b/etc/kayobe/infra-vms.yml
@@ -30,7 +30,7 @@
 #infra_vm_root_format:
 
 # 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
 # https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
 # when os_distribution is "rocky",
diff --git a/etc/kayobe/seed-vm.yml b/etc/kayobe/seed-vm.yml
index 25b0c72ecb5a3f11e15b24fb95c9d8b8491fda0a..aa805d8471c9955c84504fe250ce7b2c043fb975 100644
--- a/etc/kayobe/seed-vm.yml
+++ b/etc/kayobe/seed-vm.yml
@@ -30,7 +30,7 @@
 #seed_vm_root_format:
 
 # 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",
 # https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
 # when os_distribution is "rocky",
diff --git a/playbooks/kayobe-overcloud-host-configure-base/overrides.yml.j2 b/playbooks/kayobe-overcloud-host-configure-base/overrides.yml.j2
index b90872197b462fafa37565d163b6f38b946bb6be..5e52d2f5e266c503cd5ae7de155b5167ee3313f4 100644
--- a/playbooks/kayobe-overcloud-host-configure-base/overrides.yml.j2
+++ b/playbooks/kayobe-overcloud-host-configure-base/overrides.yml.j2
@@ -138,15 +138,15 @@ apt_keys:
   - url: https://packages.treasuredata.com/GPG-KEY-td-agent
     filename: td-agent.asc
 apt_repositories:
-  # Ubuntu jammy repositories.
+  # Ubuntu noble repositories.
   - url: "http://{{ zuul_site_mirror_fqdn }}/ubuntu/"
-    suites: jammy jammy-updates
-    components: main restricted universe multiverse
+    suites: noble noble-updates
+    components: main universe
   - url: "http://{{ zuul_site_mirror_fqdn }}/ubuntu/"
-    suites: jammy-security
-    components: main restricted universe multiverse
+    suites: noble-security
+    components: main universe
   # Treasuredata repository.
-  - url:  http://packages.treasuredata.com/4/ubuntu/jammy/
+  - url:  http://packages.treasuredata.com/5/ubuntu/noble/
     components: contrib
     signed_by: td-agent.asc
 apt_preferences:
diff --git a/releasenotes/notes/ubuntu-noble-d60631d22a4f43d5.yaml b/releasenotes/notes/ubuntu-noble-d60631d22a4f43d5.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..c3c5e23c41d062c0323acc77db765004e9d9a93b
--- /dev/null
+++ b/releasenotes/notes/ubuntu-noble-d60631d22a4f43d5.yaml
@@ -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.
diff --git a/requirements.yml b/requirements.yml
index 25cff4953271e03ff01cb6ea50e374ab86c29ab1..5249085c761f6f4056f541750bd4c3a18c1641ae 100644
--- a/requirements.yml
+++ b/requirements.yml
@@ -42,8 +42,8 @@ roles:
     version: 1.0.0
   - src: stackhpc.libvirt-host
     version: v1.12.1
-  - name: stackhpc.libvirt-vm
-    version: v1.16.1
+  - src: stackhpc.libvirt-vm
+    version: v1.16.2
   - src: stackhpc.luks
     version: 0.4.2
   - src: stackhpc.os-ironic-state
diff --git a/zuul.d/jobs.yaml b/zuul.d/jobs.yaml
index 34d74f47e4a3f30e0bfad2a5fe331b9ca9945132..eddd5318f669d5e5716a99e5f96e3d2f7c0a5ffc 100644
--- a/zuul.d/jobs.yaml
+++ b/zuul.d/jobs.yaml
@@ -131,9 +131,9 @@
     nodeset: kayobe-rocky9
 
 - job:
-    name: kayobe-overcloud-ubuntu-jammy
+    name: kayobe-overcloud-ubuntu-noble
     parent: kayobe-overcloud-base
-    nodeset: kayobe-ubuntu-jammy
+    nodeset: kayobe-ubuntu-noble
 
 - job:
     name: kayobe-overcloud-tls-base
@@ -210,9 +210,9 @@
     nodeset: kayobe-rocky9
 
 - job:
-    name: kayobe-seed-ubuntu-jammy
+    name: kayobe-seed-ubuntu-noble
     parent: kayobe-seed-base
-    nodeset: kayobe-ubuntu-jammy
+    nodeset: kayobe-ubuntu-noble
 
 - job:
     name: kayobe-seed-images-base
@@ -244,9 +244,9 @@
 # This job builds default overcloud images but skips the build of bifrost seed
 # images which are currently timing out on Ubuntu Jammy.
 - job:
-    name: kayobe-seed-images-ubuntu-jammy
+    name: kayobe-seed-images-ubuntu-noble
     parent: kayobe-seed-images-base
-    nodeset: kayobe-ubuntu-jammy
+    nodeset: kayobe-ubuntu-noble
     vars:
       seed_container_image_regex: "^base"
 
@@ -273,9 +273,9 @@
     nodeset: kayobe-rocky9
 
 - job:
-    name: kayobe-overcloud-host-configure-ubuntu-jammy
+    name: kayobe-overcloud-host-configure-ubuntu-noble
     parent: kayobe-overcloud-host-configure-base
-    nodeset: kayobe-ubuntu-jammy
+    nodeset: kayobe-ubuntu-noble
 
 - job:
     name: kayobe-seed-upgrade-base
@@ -333,9 +333,9 @@
     nodeset: kayobe-rocky9
 
 - job:
-    name: kayobe-seed-vm-ubuntu-jammy
+    name: kayobe-seed-vm-ubuntu-noble
     parent: kayobe-seed-vm-base
-    nodeset: kayobe-ubuntu-jammy
+    nodeset: kayobe-ubuntu-noble
 
 - job:
     name: kayobe-seed-vm-efi-base
@@ -358,9 +358,9 @@
     nodeset: kayobe-rocky9
 
 - job:
-    name: kayobe-seed-vm-ubuntu-jammy-efi
+    name: kayobe-seed-vm-ubuntu-noble-efi
     parent: kayobe-seed-vm-efi-base
-    nodeset: kayobe-ubuntu-jammy
+    nodeset: kayobe-ubuntu-noble
 
 - job:
     name: kayobe-infra-vm-base
@@ -386,6 +386,6 @@
     nodeset: kayobe-rocky9
 
 - job:
-    name: kayobe-infra-vm-ubuntu-jammy
+    name: kayobe-infra-vm-ubuntu-noble
     parent: kayobe-infra-vm-base
-    nodeset: kayobe-ubuntu-jammy
+    nodeset: kayobe-ubuntu-noble
diff --git a/zuul.d/nodesets.yaml b/zuul.d/nodesets.yaml
index 9c36b0e28c4f2452feb3ad440f23de3cd705e677..c47febe3af890c53600980783bd538142d898a7d 100644
--- a/zuul.d/nodesets.yaml
+++ b/zuul.d/nodesets.yaml
@@ -16,3 +16,9 @@
     nodes:
       - name: primary
         label: ubuntu-jammy
+
+- nodeset:
+    name: kayobe-ubuntu-noble
+    nodes:
+      - name: primary
+        label: ubuntu-noble
diff --git a/zuul.d/project.yaml b/zuul.d/project.yaml
index 132ac132e1008653279b7f70feab3ad22d380fbe..933354699ebe7e1837c3623c896972ac9719a371 100644
--- a/zuul.d/project.yaml
+++ b/zuul.d/project.yaml
@@ -13,46 +13,46 @@
         - kayobe-tox-molecule
         - kayobe-overcloud-rocky9
         - kayobe-overcloud-centos9s
-        - kayobe-overcloud-ubuntu-jammy
+        - kayobe-overcloud-ubuntu-noble
         - kayobe-overcloud-tls-rocky9
         - kayobe-overcloud-host-configure-rocky9
         - kayobe-overcloud-host-configure-centos9s
-        - kayobe-overcloud-host-configure-ubuntu-jammy
+        - kayobe-overcloud-host-configure-ubuntu-noble
         - kayobe-overcloud-upgrade-rocky9
         - kayobe-overcloud-upgrade-ubuntu-jammy
         - kayobe-seed-rocky9
-        - kayobe-seed-ubuntu-jammy
+        - kayobe-seed-ubuntu-noble
         - kayobe-seed-images-rocky9
         - kayobe-seed-upgrade-rocky9
         - kayobe-seed-upgrade-ubuntu-jammy
         - kayobe-seed-vm-rocky9
         - kayobe-seed-vm-rocky9-efi
-        - kayobe-seed-vm-ubuntu-jammy
-        - kayobe-seed-vm-ubuntu-jammy-efi
+        - kayobe-seed-vm-ubuntu-noble
+        - kayobe-seed-vm-ubuntu-noble-efi
         - kayobe-infra-vm-rocky9
-        - kayobe-infra-vm-ubuntu-jammy
+        - kayobe-infra-vm-ubuntu-noble
     gate:
       jobs:
         - kayobe-tox-ansible-syntax
         - kayobe-tox-ansible
         - kayobe-tox-molecule
         - kayobe-overcloud-rocky9
-        - kayobe-overcloud-ubuntu-jammy
+        - kayobe-overcloud-ubuntu-noble
         - kayobe-overcloud-tls-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-ubuntu-jammy
         - kayobe-seed-rocky9
-        - kayobe-seed-ubuntu-jammy
+        - kayobe-seed-ubuntu-noble
         - kayobe-seed-upgrade-rocky9
         - kayobe-seed-upgrade-ubuntu-jammy
         - kayobe-seed-vm-rocky9
-        - kayobe-seed-vm-ubuntu-jammy
+        - kayobe-seed-vm-ubuntu-noble
         - kayobe-infra-vm-rocky9
-        - kayobe-infra-vm-ubuntu-jammy
+        - kayobe-infra-vm-ubuntu-noble
 
     experimental:
       jobs:
         - kayobe-seed-images-centos9s
-        - kayobe-seed-images-ubuntu-jammy
+        - kayobe-seed-images-ubuntu-noble