feat: add Dependabot grouping for Kubernetes dependencies#10
Merged
dims merged 2 commits intoNVIDIA:mainfrom Feb 1, 2026
Merged
feat: add Dependabot grouping for Kubernetes dependencies#10dims merged 2 commits intoNVIDIA:mainfrom
dims merged 2 commits intoNVIDIA:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds Dependabot grouping configuration for Kubernetes dependencies to reduce PR noise by consolidating updates for k8s.io/* and sigs.k8s.io/* packages into single PRs instead of creating separate ones for each dependency. The configuration follows a pattern from nvidia-container-toolkit and excludes k8s.io/klog/* due to its independent versioning.
Changes:
- Added
groupssection to the gomod package-ecosystem configuration in Dependabot - Defined
kubernetesgroup with patterns for k8s.io and sigs.k8s.io packages - Excluded k8s.io/klog from the group due to independent versioning
Coverage Report ✅
Coverage Badge |
Group k8s.io/* and sigs.k8s.io/* packages into single PRs instead of creating many separate ones. This reduces PR noise and ensures all Kubernetes dependencies are updated together for version compatibility. Excludes k8s.io/klog/* which has independent versioning. Pattern from: nvidia-container-toolkit Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> Signed-off-by: Davanum Srinivas <dsrinivas@nvidia.com>
The glob pattern k8s.io/klog/* doesn't match k8s.io/klog/v2. Use the exact module path to properly exclude klog from the Kubernetes dependency group. Addresses Copilot review feedback. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> Signed-off-by: Davanum Srinivas <dsrinivas@nvidia.com>
a2cef6f to
f87e993
Compare
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
Group
k8s.io/*andsigs.k8s.io/*packages into single PRs instead of creating many separate ones.Benefits:
Configuration:
k8s.io/*,sigs.k8s.io/*k8s.io/klog/*(has independent versioning)Alignment
Pattern from nvidia-container-toolkit.
Test plan
Risk Assessment
Low - Only affects how Dependabot groups dependency update PRs.
🤖 Generated with Claude Code