Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
- name: Build an Octavia Amphora image
hosts: "{{ amphora_builder_group | default('seed') }}"
vars:
amphora_dib_upper_constraints_file: "{{ pip_upper_constraints_file }}"

@dougszumski dougszumski Jul 30, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: It would be better to set the default here given that the playbook relies on this variable being defined. Then -e on the command line still works.

eg. similar to this - just a comment used in the file included with -e:
https://github.com/openstack/kayobe/blob/master/etc/kayobe/overcloud-dib.yml#L76

amphora_image_dest: "{{ image_cache_path }}/amphora-x64-haproxy-{{ openstack_release }}.qcow2"
tasks:
- name: Install EPEL
Expand All @@ -19,16 +18,17 @@
packages_common:
- debootstrap
- git
- python3-venv
packages_for_os_family:
RedHat:
- qemu-img
- e2fsprogs
- policycoreutils-python-utils
- python3-devel
- yum-utils
Comment thread
cityofships marked this conversation as resolved.
Debian:
- qemu-utils
- kpartx
- python3-venv
ansible.builtin.package:
name: "{{ packages_common + packages_for_os_family[ansible_facts.os_family] }}"

Expand Down
3 changes: 3 additions & 0 deletions etc/kayobe/stackhpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,9 @@ download_amphora_from_ark: true
# Octavia Amphora image version
stackhpc_amphora_image_version: "2025.1-20260319T131237"

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cityofships did you mean to also bump the image at the same time?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, let's see how it behaves in the workflow


# Whether to use a constraint for diskimage-builder version, default is none.
amphora_dib_upper_constraints_file: ""

################################################################################
# Certificate Authority

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
features:
- |
Amphora image build playbook now uses the latest diskimage-builder version
by default. This ensures better operation and compatibility in general.
Loading