Update WSO2 Docker registry URLs and image paths to the new Harbor registry format#3033
Update WSO2 Docker registry URLs and image paths to the new Harbor registry format#3033Sachindu-Nethmin wants to merge 1 commit into
Conversation
SummaryThis pull request updates Docker registry references in Micro Integrator documentation to point to the new Harbor registry infrastructure. All occurrences of the legacy registry domain ( Changes MadeFour documentation files were updated:
ImpactThese updates ensure that users accessing Micro Integrator documentation receive correct registry information and can successfully pull official Docker images from the current WSO2 registry infrastructure. All changes are documentation-only with no impact to code functionality. WalkthroughDocumentation updates across 4 files updating WSO2 Docker registry references from Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~4 minutes 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ 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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@en/micro-integrator/docs/develop/create-docker-project.md`:
- Line 49: Replace the short image host reference used in the Base Image
Repository description with the full image path: change the text
"registry.wso2.com" to "registry.wso2.com/micro-integrator/wso2mi" in the
create-docker-project.md paragraph that describes the Micro Integrator Docker
image so the Base Image Repository field shows the complete image path
(consistent with create-kubernetes-project.md and run_in_containers.md).
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 361196e8-3b15-4599-ad64-80af37c5eacf
📒 Files selected for processing (4)
en/micro-integrator/docs/develop/create-docker-project.mden/micro-integrator/docs/develop/create-kubernetes-project.mden/micro-integrator/docs/setup/deployment/deployment_checklist.mden/micro-integrator/docs/setup/installation/run_in_containers.md
| </li> | ||
| <li> | ||
| <b>docker.wso2.com</b>: This is the Micro Integrator Docker image that includes <b>product updates</b>. This image is stored in the <a href="https://docker.wso2.com/tags.php?repo=wso2mi">private WSO2 Docker registry</a>. | ||
| <b>registry.wso2.com</b>: This is the Micro Integrator Docker image that includes <b>product updates</b>. This image is stored in the <a href="https://registry.wso2.com/harbor/projects">private WSO2 Docker registry</a>. |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Search for registry.wso2.com references to verify consistency
echo "=== Checking registry.wso2.com references ==="
rg -n "registry\.wso2\.com" --type md
echo -e "\n=== Checking for image path patterns ==="
rg -n "registry\.wso2\.com.*wso2mi" --type mdRepository: wso2/docs-ei
Length of output: 1934
Update the Base Image Repository field to show the complete image path.
The create-docker-project.md line 49 shows registry.wso2.com, but other documentation files (create-kubernetes-project.md line 67 and run_in_containers.md line 27) consistently reference the full path as registry.wso2.com/micro-integrator/wso2mi. For consistency and clarity, update the documentation here to show the complete image path that users need to enter in the Base Image Repository field.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@en/micro-integrator/docs/develop/create-docker-project.md` at line 49,
Replace the short image host reference used in the Base Image Repository
description with the full image path: change the text "registry.wso2.com" to
"registry.wso2.com/micro-integrator/wso2mi" in the create-docker-project.md
paragraph that describes the Micro Integrator Docker image so the Base Image
Repository field shows the complete image path (consistent with
create-kubernetes-project.md and run_in_containers.md).
Purpose
The current documentation contains the old Docker registry link (
https://docker.wso2.com/), which needs to be updated to the new Harbor registry athttps://registry.wso2.com/harbor/projects.Goals
Ensure all Micro Integrator documentation points to the correct and current WSO2 Docker registry.
Approach
Identified and updated all occurrences of the old registry domain and links in the documentation files. This included updating:
docker.wso2.com/wso2mitoregistry.wso2.com/micro-integrator/wso2mi).docker login docker.wso2.comtodocker login registry.wso2.com).Updated Files:
User stories
As a user followng the documentation, I want to pull the latest Micro Integrator Docker images from the correct registry so that my deployments use the intended official images.
Release note
Updated Docker registry links and image hostnames from
docker.wso2.comtoregistry.wso2.com.Documentation
N/A (This PR is a documentation update).
Training
N/A
Certification
N/A
Marketing
N/A
Automation tests
Security checks
Samples
N/A
Related PRs
N/A
Migrations (if applicable)
N/A
Test environment
Learning
Researched the new registry structure to ensure image name mentions (like
registry.wso2.com/micro-integrator/wso2mi) follow the expected project/repository format for the new Harbor registry.