Skip to content

docker-image resource is deprecated#677

Merged
ramonskie merged 1 commit intomainfrom
registry-image
Apr 20, 2026
Merged

docker-image resource is deprecated#677
ramonskie merged 1 commit intomainfrom
registry-image

Conversation

@ramonskie
Copy link
Copy Markdown
Contributor

docker-image resource is deprecated and should be replaced with registry-image resource

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 20, 2026

Warning

Rate limit exceeded

@ramonskie has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 52 minutes and 50 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 52 minutes and 50 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: f40c450c-a3e9-4012-abcf-8eb6d878810b

📥 Commits

Reviewing files that changed from the base of the PR and between 1071e40 and 001327b.

📒 Files selected for processing (18)
  • ci/pipelines/bosh-bootloader.yml
  • ci/tasks/acceptance/task.yml
  • ci/tasks/bbl-up-concourse/task.yml
  • ci/tasks/build-bbl-docs/task.yml
  • ci/tasks/build-release/task.yml
  • ci/tasks/bump-brew-tap/task.yml
  • ci/tasks/bump-deployments/task.yml
  • ci/tasks/create-bosh-deployment-source-file/task.yml
  • ci/tasks/download-terraform/task.yml
  • ci/tasks/generate-version-from-sha/task.yml
  • ci/tasks/get-concourse-test-vars/task.yml
  • ci/tasks/leftovers/task.yml
  • ci/tasks/merge-bump-deployments-change/task.yml
  • ci/tasks/setup-github-release/task.yml
  • ci/tasks/test-bosh-bootloader/task.yml
  • ci/tasks/test-bosh-ssh/task.yml
  • storage/fixtures/upped/bosh-deployment/ci/bosh-alpha-compiled-releases/tasks/build-release.yml
  • storage/fixtures/upped/bosh-deployment/ci/compiled-releases/tasks/export-release.yml

Walkthrough

Updated Concourse CI configuration files to migrate image resource types from docker-image to registry-image. Changes include renaming the cf-deployment-concourse-tasks-docker-image resource to cf-deployment-concourse-tasks-registry-image and the downstream job from bbl-downstream-docker-image-bump-deployments to bbl-downstream-registry-image-bump-deployments in the main pipeline file. Updated all corresponding resource references and job dependencies accordingly. Applied the same image resource type migration (docker-imageregistry-image) across seventeen task configuration files while preserving the referenced image repositories and tags.

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately describes the primary change: replacing deprecated docker-image resources with registry-image resources across the codebase.
Description check ✅ Passed The description is directly related to the changeset, clearly explaining that docker-image resources are deprecated and replaced with registry-image resources.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch registry-image

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.

rkoster
rkoster previously approved these changes Apr 20, 2026
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
ci/pipelines/bosh-bootloader.yml (1)

31-36: ⚠️ Potential issue | 🔴 Critical

Complete the resource migration before deploying these changes.

Lines 447-450 push cf-deployment-concourse-tasks-bbl-dev (now registry-image type on line 165) using docker-image-style build and cache parameters, which the registry-image resource type does not support. The put step requires an image parameter pointing to a tarball. Additionally, lines 231-234 push docker-bbl-deployment (still docker-image type on line 32) with a build parameter, indicating the migration is incomplete.

To fix: (1) build images using oci-build-task before pushing to registry-image resources, or (2) revert both resources back to docker-image type. The proposed pattern in the original review comment shows the correct build-then-push approach for registry-image.

Also update ci/pipelines/README.md line 32: job is now bbl-downstream-registry-image-bump-deployments (line 403 of pipeline), not bbl-downstream-docker-image-bump-deployments.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@ci/pipelines/bosh-bootloader.yml` around lines 31 - 36, The pipeline still
mixes docker-image-style build semantics with registry-image resources: the
resource docker-bbl-deployment (resource name "docker-bbl-deployment") is
defined as docker-image but pushed with build parameters, and
cf-deployment-concourse-tasks-bbl-dev was changed to registry-image but is still
being pushed using docker-image-style build/cache; update the flow to either (A)
revert both resources to type docker-image, or preferably (B) keep
registry-image and change the jobs to build OCI tarballs first using the
existing oci-build-task (create artifacts/tarball in the build job) and then
change the put steps that currently push with build/cache to use registry-image
put with an image: path/to/tarball; also update the README job name from
bbl-downstream-docker-image-bump-deployments to
bbl-downstream-registry-image-bump-deployments.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@ci/pipelines/bosh-bootloader.yml`:
- Line 403: The README still references the old job name
bbl-downstream-docker-image-bump-deployments; update the documentation to use
the new job name bbl-downstream-registry-image-bump-deployments everywhere it
appears (README headings, examples, and any job lists) so the README matches the
pipeline rename; search for and replace occurrences of
bbl-downstream-docker-image-bump-deployments with
bbl-downstream-registry-image-bump-deployments and verify any related
descriptions or links mention the new name consistently.

---

Outside diff comments:
In `@ci/pipelines/bosh-bootloader.yml`:
- Around line 31-36: The pipeline still mixes docker-image-style build semantics
with registry-image resources: the resource docker-bbl-deployment (resource name
"docker-bbl-deployment") is defined as docker-image but pushed with build
parameters, and cf-deployment-concourse-tasks-bbl-dev was changed to
registry-image but is still being pushed using docker-image-style build/cache;
update the flow to either (A) revert both resources to type docker-image, or
preferably (B) keep registry-image and change the jobs to build OCI tarballs
first using the existing oci-build-task (create artifacts/tarball in the build
job) and then change the put steps that currently push with build/cache to use
registry-image put with an image: path/to/tarball; also update the README job
name from bbl-downstream-docker-image-bump-deployments to
bbl-downstream-registry-image-bump-deployments.
🪄 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: ASSERTIVE

Plan: Pro

Run ID: f1000dd9-384a-400d-b1bd-f99506dd2cde

📥 Commits

Reviewing files that changed from the base of the PR and between 6e5b8ec and 1071e40.

📒 Files selected for processing (18)
  • ci/pipelines/bosh-bootloader.yml
  • ci/tasks/acceptance/task.yml
  • ci/tasks/bbl-up-concourse/task.yml
  • ci/tasks/build-bbl-docs/task.yml
  • ci/tasks/build-release/task.yml
  • ci/tasks/bump-brew-tap/task.yml
  • ci/tasks/bump-deployments/task.yml
  • ci/tasks/create-bosh-deployment-source-file/task.yml
  • ci/tasks/download-terraform/task.yml
  • ci/tasks/generate-version-from-sha/task.yml
  • ci/tasks/get-concourse-test-vars/task.yml
  • ci/tasks/leftovers/task.yml
  • ci/tasks/merge-bump-deployments-change/task.yml
  • ci/tasks/setup-github-release/task.yml
  • ci/tasks/test-bosh-bootloader/task.yml
  • ci/tasks/test-bosh-ssh/task.yml
  • storage/fixtures/upped/bosh-deployment/ci/bosh-alpha-compiled-releases/tasks/build-release.yml
  • storage/fixtures/upped/bosh-deployment/ci/compiled-releases/tasks/export-release.yml

Comment thread ci/pipelines/bosh-bootloader.yml Outdated
@ramonskie ramonskie merged commit 96e5f0b into main Apr 20, 2026
8 checks passed
@ramonskie ramonskie deleted the registry-image branch April 20, 2026 08:02
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