Skip to content

Remove old OFED method #1691

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 9, 2025
Merged
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
5 changes: 1 addition & 4 deletions etc/kayobe/ansible/pulp-host-image-download.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,15 @@
# password in the get_url task of this playbook
stackhpc_overcloud_host_image_url_no_auth: "{{ stackhpc_release_pulp_content_url }}/kayobe-images/\
{{ openstack_release }}/{{ os_distribution }}/{{ os_release }}/\
{{ 'ofed/' if stackhpc_overcloud_host_image_is_ofed else '' }}\
{{ stackhpc_overcloud_host_image_version }}/\
overcloud-{{ os_distribution }}-{{ os_release }}\
{{ '-ofed' if stackhpc_overcloud_host_image_is_ofed else '' }}.qcow2"
overcloud-{{ os_distribution }}-{{ os_release }}.qcow2"
tasks:
- name: Print image information
ansible.builtin.debug:
msg: |
OS Distribution: {{ os_distribution }}
OS Release: {{ os_release }}
Image tag: {{ stackhpc_overcloud_host_image_version }}
OFED: {{ stackhpc_overcloud_host_image_is_ofed }}

# TODO: Add checksum support
- name: Download image artifact
Expand Down
11 changes: 2 additions & 9 deletions etc/kayobe/stackhpc-overcloud-host-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,12 @@
# Whether or not to download overcloud host images from Ark
stackhpc_download_overcloud_host_images: false

# Whether or not to use images with MLNX_OFED installed (for deployment using
# mellanox/Nvidia NICs). Only available for Ubuntu Jammy and Rocky Linux 9
# OFED images are currently WIP and this variable is a placeholder
stackhpc_overcloud_host_image_is_ofed: false

# The overcloud host image source, defined by os_distribution, os_release,
# stackhpc_overcloud_host_image_is_ofed, and the current stable version.
# and the current stable version.
stackhpc_overcloud_host_image_url: "{{ stackhpc_release_pulp_content_url_with_auth }}/kayobe-images/\
{{ openstack_release }}/{{ os_distribution }}/{{ os_release }}/\
{{ 'ofed/' if stackhpc_overcloud_host_image_is_ofed else '' }}\
{{ stackhpc_overcloud_host_image_version }}/\
overcloud-{{ os_distribution }}-{{ os_release }}\
{{ '-ofed' if stackhpc_overcloud_host_image_is_ofed else '' }}.qcow2"
overcloud-{{ os_distribution }}-{{ os_release }}.qcow2"

# Overcloud host image version tag selection
stackhpc_overcloud_host_image_version: >-
Expand Down
Loading