Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
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