Skip to content

fix(deps): sync quadlet container image tags and add quadlets/ directory to dependabot.yml - #480

Merged
sheepdestroyer merged 1 commit into
masterfrom
fix/add-quadlets-dependabot-scan-and-update-tags
Aug 13, 2026
Merged

fix(deps): sync quadlet container image tags and add quadlets/ directory to dependabot.yml#480
sheepdestroyer merged 1 commit into
masterfrom
fix/add-quadlets-dependabot-scan-and-update-tags

Conversation

@sheepdestroyer

@sheepdestroyersheepdestroyer commented Aug 13, 2026

Copy link
Copy Markdown
Owner

Summary

  • Update image tags in templates ( 4.6.0, v1.96.0, 26.4.5.143) to match production image versions.
  • Add scan target to so Dependabot updates Podman Quadlet unit image references automatically.

Summary by Sourcery

Keep Podman Quadlet unit container images in sync with production and automatically updated via Dependabot.

Enhancements:

  • Align quadlet container image tags with the current production image versions.

Build:

  • Configure Dependabot to scan the quadlets/ directory as a docker ecosystem and manage container image updates there.

Summary by CodeRabbit

  • Improvements
    • Updated the application’s data, observability, and language-model routing components to newer container versions.
    • Improved service reliability and access to upstream fixes and enhancements.
    • Added automated daily checks for available container image updates.
    • Related services will now be updated together where appropriate to maintain compatibility.

@sourcery-ai

sourcery-aiBot commented Aug 13, 2026

Copy link
Copy Markdown
Contributor

Reviewer's Guide

This PR ensures Quadlet container unit images track production versions and configures Dependabot to maintain those image references automatically for the quadlets directory.

Flow diagram for Dependabot updating quadlets container image tags

flowchart TD
A[Daily Dependabot run
package-ecosystem docker
directory quadlets/] --> B[Scan quadlets/*.container image references]
B --> C{Matching dependencies
langfuse/langfuse,
langfuse/langfuse-worker,
valkey/valkey}
C -->|yes| D[Group updates into langfuse and valkey dependency groups]
C -->|no| E[Skip grouping]
D --> F[Open PRs with chore deps scope commit messages
label dependencies, docker]
E --> F
B --> G[Ignore ROUTER_IMAGE_PLACEHOLDER]
F --> H[Reviewer sheepdestroyer reviews and merges PR]
Loading

File-Level Changes

ChangeDetailsFiles
Configure Dependabot to scan and update container images referenced in Podman Quadlet units under quadlets/.
  • Add a new docker package-ecosystem entry targeting the quadlets/ directory with a daily schedule and dependency labels.
  • Configure commit message prefix and scope, reviewer assignment, and dependency-type allowance for Quadlet image updates.
  • Ignore the ROUTER_IMAGE_PLACEHOLDER image while grouping langfuse and valkey images under named Dependabot groups.
.github/dependabot.yml
Align Quadlet container unit image tags with the current production image versions.
  • Update the image tag in the llm-routing-clickhouse Quadlet unit to version 4.6.0.
  • Update the image tag in the llm-routing-langfuse-web Quadlet unit to version v1.96.0.
  • Update image tags in llm-routing-langfuse-worker and llm-routing-litellm Quadlet units to 26.4.5.143 to match production.
quadlets/llm-routing-clickhouse.container
quadlets/llm-routing-langfuse-web.container
quadlets/llm-routing-langfuse-worker.container
quadlets/llm-routing-litellm.container

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@github-actionsgithub-actionsBot added the github-actions PRs that update GitHub Actions label Aug 13, 2026
@coderabbitai

coderabbitaiBot commented Aug 13, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 5bab05fa-91f2-4ce8-831c-19dfebbc07fd

📥 Commits

Reviewing files that changed from the base of the PR and between b311cb3 and 499a1c3.

📒 Files selected for processing (5)
  • .github/dependabot.yml
  • quadlets/llm-routing-clickhouse.container
  • quadlets/llm-routing-langfuse-web.container
  • quadlets/llm-routing-langfuse-worker.container
  • quadlets/llm-routing-litellm.container

📝 Walkthrough

Walkthrough

Dependabot now monitors Docker images in quadlets/ daily. Four Quadlet container image references were updated for ClickHouse, Langfuse web, Langfuse worker, and LiteLLM.

Changes

Quadlet image maintenance

Layer / File(s)Summary
Dependabot Quadlet configuration
.github/dependabot.yml
Adds daily Docker updates for quadlets/ with pull-request settings, dependency policies, reviewer assignment, an ignore rule, and Langfuse/Valkey groups.
Quadlet image version updates
quadlets/llm-routing-clickhouse.container, quadlets/llm-routing-langfuse-web.container, quadlets/llm-routing-langfuse-worker.container, quadlets/llm-routing-litellm.container
Updates the ClickHouse, Langfuse web, Langfuse worker, and LiteLLM image tags.

Estimated code review effort: 1 (Trivial) | ~5 minutes

Possibly related PRs

✨ Finishing Touches 💡 1
🛠️ Fix failing CI checks 💡
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/add-quadlets-dependabot-scan-and-update-tags

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.

@sourcery-aisourcery-aiBot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Hey - I've left some high level feedback:

  • Consider whether ignore-ing ROUTER_IMAGE_PLACEHOLDER in the new quadlets docker ecosystem is necessary or if it could hide legitimate image updates, especially if that placeholder is ever replaced by a real image name.
  • The new quadlets dependabot entry duplicates the langfuse and valkey group definitions from the router config; if these are meant to stay in sync, you might want to centralize or clearly comment the duplication to avoid future divergence in grouping patterns.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments- Consider whether `ignore`-ing `ROUTER_IMAGE_PLACEHOLDER` in the new quadlets docker ecosystem is necessary or if it could hide legitimate image updates, especially if that placeholder is ever replaced by a real image name.
- The new quadlets dependabot entry duplicates the `langfuse` and `valkey` group definitions from the router config; if these are meant to stay in sync, you might want to centralize or clearly comment the duplication to avoid future divergence in grouping patterns.

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@sheepdestroyer
sheepdestroyer merged commit 35d023e into masterAug 13, 2026
6 of 8 checks passed
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

github-actionsPRs that update GitHub Actions

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@sheepdestroyer