Skip to content

[DSD-9180] image moved from dev2 to qa - #1355

Merged
Prafulrakhade merged 2 commits into
mosip:release-1.2.0.1from
gaganamadival:release-1.2.0.1
Nov 7, 2025
Merged

[DSD-9180] image moved from dev2 to qa#1355
Prafulrakhade merged 2 commits into
mosip:release-1.2.0.1from
gaganamadival:release-1.2.0.1

Conversation

@gaganamadival

@gaganamadival gaganamadival commented Nov 7, 2025

Copy link
Copy Markdown
Contributor

Summary by CodeRabbit

  • Chores
    • Removed several deprecated service images from the release configuration.
    • Added a new UI-test service image to support updated testing and deployment workflows.

Signed-off-by: gaganamadival <94885434+gaganamadival@users.noreply.github.com>
@coderabbitai

coderabbitai Bot commented Nov 7, 2025

Copy link
Copy Markdown

Walkthrough

Removed seven Docker image entries from a release manifest and added a single mosipdev2/uitest-pmp-v2:release-1.3.x entry in release/vidivi/images.txt.

Changes

Cohort / File(s) Summary
Release images manifest
release/vidivi/images.txt
Removed 7 image lines: mosipdev/esignet-with-plugins:release-1.7.x, mosipdev/oidc-ui:release-1.7.x, mosipdev/signup-with-plugins:release-1.3.x, mosipdev/signup-ui:release-1.3.x, mosipdev/mock-identity-system:release-0.12.x, mosipdev/mock-relying-party-service:release-0.12.x, mosipdev/mock-relying-party-ui:release-0.12.x; added mosipdev2/uitest-pmp-v2:release-1.3.x (tag 1.3.x).

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

  • Verify removed image entries are intentionally removed and not referenced elsewhere.
  • Confirm new mosipdev2/uitest-pmp-v2:release-1.3.x name and tag are correct.

Possibly related PRs

Suggested reviewers

  • ckm007

Poem

🐰 A hop, a tweak, the list grows new and few,
Old images tucked out of view,
One tiny tag hops into place,
Mosipdev2 finds its space 🥕✨

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: removal of seven images and addition of one image (mosipdev2/uitest-pmp-v2), reflecting movement/migration of image configurations.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between f8b1bc5 and e9f4acc.

📒 Files selected for processing (1)
  • release/vidivi/images.txt (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • release/vidivi/images.txt

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between db0f1b3 and f8b1bc5.

📒 Files selected for processing (1)
  • release/vidivi/images.txt (1 hunks)

Comment thread release/vidivi/images.txt Outdated
mock-identity-system:release-0.12.x 0.12.x
mock-relying-party-service:release-0.12.x 0.12.x
mock-relying-party-ui:release-0.12.x 0.12.x
mosipdev2/uitest-pmp-v2:release-1.3.x 1.3.x

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

⚠️ Environment mismatch: PR title says "dev2 to qa" but change adds mosipdev2 image.

The PR objective states the image should be moved from dev2 to qa, yet line 1 adds mosipdev2/uitest-pmp-v2:release-1.3.x, which is from the mosipdev2 namespace (dev2), not qa. This suggests either:

  • The wrong namespace image was added (should be mosipqa instead?)
  • The PR title/objective is inaccurate

Additionally, the AI summary indicates 7 images are being removed while only 1 is added, which contradicts a typical "move" operation. Confirm that the removals are intentional and unrelated to this image promotion.

Run the following script to verify the scope and intent of changes:


🏁 Script executed:

#!/bin/bash
# Description: Examine the full diff of images.txt to understand all removals and the single addition.

# Show the git diff to see all removed/added lines with context
git diff HEAD -- release/vidivi/images.txt

# Count the changes
echo "=== Summary ==="
echo "Lines removed:"
git diff HEAD -- release/vidivi/images.txt | grep '^-' | grep -v '^---' | wc -l
echo "Lines added:"
git diff HEAD -- release/vidivi/images.txt | grep '^+' | grep -v '^+++' | wc -l

Length of output: 47


I need to investigate further. The git diff shows 0 changes, which contradicts the review context. Let me verify the file state and git repository status.


🏁 Script executed:

#!/bin/bash
# Check if file exists and show its content
echo "=== Checking file existence and content ==="
if [ -f "release/vidivi/images.txt" ]; then
  echo "✓ File exists"
  echo "=== File content ==="
  cat release/vidivi/images.txt
  echo ""
  echo "=== Line count ==="
  wc -l release/vidivi/images.txt
else
  echo "✗ File does not exist"
  find . -name "images.txt" 2>/dev/null | head -5
fi

# Check git status
echo ""
echo "=== Git status ==="
git status release/vidivi/images.txt 2>&1 || echo "File not tracked or error occurred"

# Check git log for recent changes to this file
echo ""
echo "=== Recent commits affecting this file ==="
git log --oneline -10 -- release/vidivi/images.txt 2>&1 || echo "No history found"

# Show the current branch
echo ""
echo "=== Current git state ==="
git branch -v
git log -1 --oneline

Length of output: 1062


🏁 Script executed:

#!/bin/bash
# Check if file exists and show its content
echo "=== Checking file existence and content ==="
if [ -f "release/vidivi/images.txt" ]; then
  echo "✓ File exists"
  echo "=== File content ==="
  cat release/vidivi/images.txt
  echo ""
  echo "=== Line count ==="
  wc -l release/vidivi/images.txt
else
  echo "✗ File does not exist"
  find . -name "images.txt" 2>/dev/null | head -5
fi

# Check git status
echo ""
echo "=== Git status ==="
git status release/vidivi/images.txt 2>&1 || echo "File not tracked or error occurred"

# Check git log for recent changes to this file
echo ""
echo "=== Recent commits affecting this file ==="
git log --oneline -10 -- release/vidivi/images.txt 2>&1 || echo "No history found"

# Show the current branch
echo ""
echo "=== Current git state ==="
git branch -v
git log -1 --oneline

Length of output: 1062


Let me check the parent commit to see what was actually changed:


🏁 Script executed:

#!/bin/bash
# Show the diff of the current HEAD commit to understand what changed
echo "=== Current commit (HEAD) diff ==="
git show --stat f8b1bc5 -- release/vidivi/images.txt

echo ""
echo "=== Full diff of current commit ==="
git show f8b1bc5 -- release/vidivi/images.txt

echo ""
echo "=== Parent commit state ==="
git show f8b1bc5~1:release/vidivi/images.txt 2>&1 | head -20

Length of output: 1547


Correct the image namespace from mosipdev2 to mosipqa.

The PR objective states "image moved from dev2 to qa", but line 1 currently specifies mosipdev2/uitest-pmp-v2:release-1.3.x (dev2 environment) instead of mosipqa/uitest-pmp-v2:release-1.3.x (qa environment). The change is promoting to the wrong environment. Update the image registry namespace to mosipqa.

-mosipdev2/uitest-pmp-v2:release-1.3.x 1.3.x
+mosipqa/uitest-pmp-v2:release-1.3.x 1.3.x
🤖 Prompt for AI Agents
In release/vidivi/images.txt around lines 1 to 1, the image namespace is
incorrectly set to mosipdev2; change the registry namespace to mosipqa so the
line reads mosipqa/uitest-pmp-v2:release-1.3.x 1.3.x, updating only the
namespace portion and leaving the image name and tag unchanged.

Signed-off-by: gaganamadival <94885434+gaganamadival@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants