Skip to content

Commit 9eca570

Browse files
committed
Append filename to pulp artifact checksums file
1 parent f68ea05 commit 9eca570

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

etc/kayobe/ansible/pulp-artifact-upload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
fixes:
3+
- |
4+
Fixes a regression where the checksums files for artifatcs uploaded to Ark
5+
would not include the filename. This was causing Bifrost to fail when
6+
validating the checksums for overcloud host images.

0 commit comments

Comments
 (0)