-
Notifications
You must be signed in to change notification settings - Fork 16
[WIP] NO-JIRA | ci: remove "kubev2v" registry, use "redhat-user-workloads/assisted-migration-tenant" instead #517
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -37,10 +37,10 @@ Customizing the repository destination for the UI image follows similar steps to | |||||||||||||
|
|
||||||||||||||
| First, create dedicated repositories in your Quay environment that will replace the destination for the `migration-planner-agent` and `migration-planner-api` images. The replacements will be as follows: | ||||||||||||||
|
|
||||||||||||||
| - **Old Destination**: `quay.io/kubev2v/migration-planner-agent` | ||||||||||||||
| - **Old Destination**: `quay.io/redhat-user-workloads/assisted-migration-tenant/migration-planner-agent` | ||||||||||||||
| **New Destination**: `quay.io/<YOUR-QUAY-USERNAME>/migration-planner-agent` | ||||||||||||||
|
|
||||||||||||||
| - **Old Destination**: `quay.io/kubev2v/migration-planner-api` | ||||||||||||||
| - **Old Destination**: `quay.io/redhat-user-workloads/assisted-migration-tenant/migration-planner-api` | ||||||||||||||
| **New Destination**: `quay.io/<YOUR-QUAY-USERNAME>/migration-planner-api` | ||||||||||||||
|
|
||||||||||||||
| 2. Create a Quay Bot Account | ||||||||||||||
|
|
@@ -62,8 +62,8 @@ To ensure that the workflow pushes the images to your custom Quay repositories, | |||||||||||||
|
|
||||||||||||||
| Before modification, the `Makefile` contains: | ||||||||||||||
|
|
||||||||||||||
| `MIGRATION_PLANNER_AGENT_IMAGE ?= quay.io/kubev2v/migration-planner-agent` | ||||||||||||||
| `MIGRATION_PLANNER_API_IMAGE ?= quay.io/kubev2v/migration-planner-api` | ||||||||||||||
| `MIGRATION_PLANNER_AGENT_IMAGE ?= quay.io/redhat-user-workloads/assisted-migration-tenant/migration-planner-agent` | ||||||||||||||
| `MIGRATION_PLANNER_API_IMAGE ?= quay.io/redhat-user-workloads/assisted-migration-tenant/migration-planner-api` | ||||||||||||||
|
Comment on lines
+65
to
+66
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Section likely stale: workflow was removed in this PR. This whole “build-push-images.yml” section documents a workflow that no longer exists. Either mark it as deprecated with the removal date (Aug 27, 2025) and point to the new process, or remove the section. If keeping the section for historical context, prepend a banner: +# Note: The `build-push-images.yml` workflow was removed on 2025-08-27.
+# The instructions below are deprecated; see current release/publish docs or .github/workflows.📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||
|
|
||||||||||||||
| After modification, update the repository destination to your custom Quay repositories: | ||||||||||||||
|
|
||||||||||||||
|
|
@@ -228,4 +228,4 @@ The agent’s full journal output is printed to the Ginkgo test output (DumpLogs | |||||||||||||
|
|
||||||||||||||
| The system automatically calls AfterFailed() to trigger log dumping. | ||||||||||||||
|
|
||||||||||||||
| --- | ||||||||||||||
| --- | ||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Registry org change: confirm repo and creds exist in new namespace
Switching to redhat-user-workloads/assisted-migration-tenant looks fine. Please verify:
Run to spot leftovers:
🏁 Script executed:
Length of output: 26888
🏁 Script executed:
Length of output: 634
Registry org change: update remaining quay.io/kubev2v references
We’ve confirmed that two hard-coded quay.io/kubev2v paths remain and must be updated to use the new
$(REGISTRY_ORG)(i.e.redhat-user-workloads/assisted-migration-tenant):defaultAgentImage = "quay.io/kubev2v/migration-planner-agent"→ should be
$(REGISTRY_ORG)/migration-planner-agentinstead of the quay.io path.containers-storage:quay.io/kubev2v/migration-planner-agent:latest(and the forklift-validation image)→ these should reference
$(REGISTRY_ORG)/migration-planner-agent:latest(and, if applicable, the new org for forklift-validation).Next steps:
$(REGISTRY_ORG)migration-planner-agentandmigration-planner-apirepos exist underredhat-user-workloads/assisted-migration-tenantand that you have push rights.quay.io/kubev2vreferences and update accordingly.🤖 Prompt for AI Agents