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 @@ -73,4 +73,4 @@
The deployment image checksum does not match the file that has been downloaded.
Ensure that deploy_image_upstream_url, deploy_image_checksum_url, and deploy_image_checksum_algorithm are set correctly.
To ignore the checksum, set deploy_image_checksum_algorithm to none.
when: deploy_image_checksum_algorithm != 'none' and downloaded_image_stat.stat.checksum != parsed_deployment_image_checksum
when: deploy_image_checksum_algorithm != 'none' and downloaded_image_stat.stat.checksum not in deployment_image_checksum
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue checksum vaidation would fail when a deployment image is
downloaded, even if the checksum matched. See `LP#2115188
<https://bugs.launchpad.net/bifrost/+bug/2115188>`__ for more details.