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
2 changes: 1 addition & 1 deletion etc/kayobe/ansible/pulp/pulp-artifact-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

- name: Write checksum to file
ansible.builtin.copy:
content: "{{ file_stats.stat.checksum }}"
content: "{{ file_stats.stat.checksum }} {{ found_files.files[0].path | basename }}"
dest: "/tmp/{{ found_files.files[0].path | basename }}.sha256"
when: upload_checksum

Expand Down
8 changes: 4 additions & 4 deletions etc/kayobe/environments/ci-tenks/automated-deployment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ sudo $KAYOBE_CONFIG_PATH/environments/$KAYOBE_ENVIRONMENT/configure-local-networ
# for now we should skip it and just get to provisioning. Once we have a local
# package mirror, we can probably add it back in and at least get to host
# configuration.
#kayobe playbook run $KAYOBE_CONFIG_PATH/ansible/pulp-repo-sync.yml
#kayobe playbook run $KAYOBE_CONFIG_PATH/ansible/pulp-repo-publish.yml
kayobe playbook run $KAYOBE_CONFIG_PATH/ansible/pulp-container-sync.yml -e stackhpc_pulp_images_kolla_filter=bifrost
kayobe playbook run $KAYOBE_CONFIG_PATH/ansible/pulp-container-publish.yml -e stackhpc_pulp_images_kolla_filter=bifrost
#kayobe playbook run $KAYOBE_CONFIG_PATH/ansible/pulp/pulp-repo-sync.yml
#kayobe playbook run $KAYOBE_CONFIG_PATH/ansible/pulp/pulp-repo-publish.yml
kayobe playbook run $KAYOBE_CONFIG_PATH/ansible/pulp/pulp-container-sync.yml -e stackhpc_pulp_images_kolla_filter=bifrost
kayobe playbook run $KAYOBE_CONFIG_PATH/ansible/pulp/pulp-container-publish.yml -e stackhpc_pulp_images_kolla_filter=bifrost

# Re-run full task to set up bifrost_deploy etc. using newly-populated pulp repo
kayobe seed service deploy
Expand Down
4 changes: 2 additions & 2 deletions etc/kayobe/pulp-host-image-versions.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
# Overcloud host image versioning tags
# These images must be in SMS, since they are used by our AIO CI runners
stackhpc_rocky_9_overcloud_host_image_version: "2025.1-20250916T145046"
stackhpc_ubuntu_noble_overcloud_host_image_version: "2025.1-20250916T145046"
stackhpc_rocky_9_overcloud_host_image_version: "2025.1-20250930T144255"
stackhpc_ubuntu_noble_overcloud_host_image_version: "2025.1-20250930T144255"
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
fixes:
- |
Fixes a regression where the checksums files for artifacts uploaded to Ark
would not include the filename. This was causing Bifrost to fail when
validating the checksums for overcloud host images.
Loading