[DSD-9503] mosipdev2 to mosipqa - #1485
Conversation
Signed-off-by: gaganamadival <94885434+gaganamadival@users.noreply.github.com>
WalkthroughUpdates container image references in the release configuration by replacing a single eSignet signup image with two development images: inji-web and mimoto, both using the develop tag. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested reviewers
Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
| mosipdev2/inji-web:develop develop | ||
| mosipdev2/mimoto:develop develop |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Search for PR references, registry configuration, and recent changes
# First, check git log for DSD-9503 commits
echo "=== Git history for DSD-9503 or related commits ==="
git log --all --oneline --grep="DSD-9503\|mosipqa\|mosipdev2" -20 2>/dev/null || echo "No matching commits found"
echo -e "\n=== Current content of the file ==="
cat -n release/vidivi/images.txt 2>/dev/null || echo "File not found"
echo -e "\n=== Check git diff history for this file ==="
git log --oneline release/vidivi/images.txt 2>/dev/null | head -10 || echo "File not in git history"
echo -e "\n=== Recent changes to the file ==="
git log -p --follow release/vidivi/images.txt 2>/dev/null | head -50 || echo "No history available"Repository: mosip/release-script
Length of output: 1454
🏁 Script executed:
#!/bin/bash
# Get the actual diff of the most recent commit
echo "=== Commit d79fef6 diff ==="
git show d79fef6 --stat
echo -e "\n=== Full diff of release/vidivi/images.txt in that commit ==="
git show d79fef6 -- release/vidivi/images.txt 2>/dev/null || echo "File not in that commit"
echo -e "\n=== Check what the old content was (before the commit) ==="
git show d79fef6^:release/vidivi/images.txt 2>/dev/null || echo "Previous version not available"Repository: mosip/release-script
Length of output: 3372
🏁 Script executed:
#!/bin/bash
# Examine related files in vidivi directory for context
echo "=== vidivi/README.md excerpt ==="
head -100 release/vidivi/README.md 2>/dev/null || echo "README not found"
echo -e "\n=== vidivi/config.yml ==="
cat release/vidivi/config.yml 2>/dev/null || echo "Config not found"
echo -e "\n=== Similar PR DSD-9452 (mosipdev2 to mosipqa) ==="
git show d226c6e -- release/vidivi/images.txt 2>/dev/null | head -30 || echo "Not available"
echo -e "\n=== List all files in release/vidivi directory ==="
ls -la release/vidivi/ 2>/dev/null || echo "Directory not found"Repository: mosip/release-script
Length of output: 7145
Registry mismatch: PR title indicates mosipqa but images reference mosipdev2.
The commit message "[DSD-9503] mosipdev2 to mosipqa" contradicts the file content. According to the documented lifecycle (mosipdev → mosipdev2 → mosipqa → mosipid), images should reference mosipqa, not mosipdev2. Additionally, using develop tags on a release configuration is inconsistent with the release-versioning pattern shown in related PRs.
🤖 Prompt for AI Agents
In release/vidivi/images.txt lines 1-2, the image registry and tags are
incorrect: they reference mosipdev2 and use the develop tag while the PR title
and lifecycle require mosipqa and a release-style tag. Update both lines to
point to the mosipqa registry (e.g., mosipqa/inji-web and mosipqa/mimoto) and
replace the "develop" tag with the correct release tag used by related PRs
(e.g., the specific release version or semantic tag), and verify the final
values match the documented lifecycle and the PR title.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.