We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 065d0a0 commit 267cd54Copy full SHA for 267cd54
1 file changed
integration-tests/rh-push-to-external-registry/test.sh
@@ -70,6 +70,18 @@ verify_release_contents() {
70
echo "🔴 imageId: ${result_image_id} did not match expected imageId: ${imageId}"
71
failures=$((failures+1))
72
fi
73
+
74
+ # Verify RPM manifest was pushed to Pyxis for this image (validates push-rpm-data-to-pyxis ran)
75
+ result_rpm_json="$(curl --cert /tmp/cert --key /tmp/key \
76
+ "${pyxis_url}v1/images/id/${imageId}/rpm-manifest")"
77
+ rpm_manifest_id=$(jq -r '._id // ""' <<< "${result_rpm_json}")
78
+ if [ -n "${rpm_manifest_id}" ]; then
79
+ echo "✅️ Found RPM manifest for imageId: ${imageId} in pyxis"
80
+ else
81
+ echo "🔴 No RPM manifest found for imageId: ${imageId}"
82
+ failures=$((failures+1))
83
+ fi
84
85
imageIdsFound=true
86
done
87
0 commit comments