refactor(images): remove systemd and dind image variants#52
Merged
Conversation
Current behavior: Three container image variants were published: base, systemd (with init system), and dind (with Docker-in-Docker). The systemd and dind variants added complexity to CI/CD, release management, and documentation. New behavior: Only the base image variant is published. Removed: - images/systemd/ and images/dind/ directories - CI workflow matrix entries for systemd/dind - Release-please configuration for systemd/dind components - Docker Bake targets for systemd/dind - Documentation references to systemd/dind variants 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
headjack | 2eec933 | Commit Preview URL Branch Preview URL |
Jan 04 2026, 11:23 PM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
images/systemd/andimages/dind/directories and all CI/CD, release, and documentation referencesChanges
Deleted:
images/systemd/directory (Dockerfile, CHANGELOG.md, .trivyignore)images/dind/directory (Dockerfile, CHANGELOG.md, .trivyignore)Updated CI/CD:
.github/workflows/images.yml- Removed systemd/dind tag triggers, lint matrix entries, variants, outputs, and case handling.github/workflows/security-scan.yml- Updated matrix to only include baseUpdated Build Config:
docker-bake.hcl- Removed systemd/dind targets, updated default groupjustfile- Removed build-systemd, build-dind tasks and hadolint entriesUpdated Release Config:
release-please-config.json- Removed images/systemd and images/dind packages.release-please-manifest.json- Removed systemd/dind version entriesUpdated Documentation:
docs/docs/reference/images/overview.md- Rewrote to only document base imagedocs/docs/reference/configuration.md- Removed variant referencesRELEASE.md- Updated component table, examples, and troubleshooting sectionsUpdated Code:
internal/config/config.go- Removed variant commentTest plan
just checkpasses (format, lint, test)hadolint images/base/Dockerfilepasses🤖 Generated with Claude Code