Tighten unused ConfigMap and Secret audit checks#1067
Open
nadaverell wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 7f01762. Configure here.
275427e to
bf09d52
Compare
bf09d52 to
b71e516
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.

Why
The
Unused ConfigMap or Secretaudit check can recommend deletion, so false positives are the dangerous failure mode. It was only crediting live Pod refs plus a narrow set of consumers, which meant valid workload-template, ServiceAccount, generated-object, and CSI/legacy volume references could be reported as orphaned.Linear: SKY-1100
What changed
imagePullSecretswhen a PodSpec relies on ServiceAccount admission defaults, including the implicitdefaultServiceAccount.nodePublishSecretRef, and legacy in-tree volume secret refs in the consumed-resource index.secretInConfigMapso broad keys likeauth,token,secret, andcredentialsrequire a secret-looking value. Low-information settings such asauth_mode=oidc,token_ttl=3600, credentials file paths, and Secret-name references no longer fire.Testing
cd pkg && go test ./audit -run 'TestOrphanConfigMapSecret|TestSecretInConfigMap'cd pkg && go test ./auditgo test ./internal/auditmake tscmake testmake buildRisk / blast radius
Blast radius is limited to audit finding precision for ConfigMap/Secret cleanup and ConfigMap-secret warnings. The direction is intentionally false-positive reduction: fewer valid resources should be labeled safe to delete.
Product tradeoff:
secretInConfigMapis now more precision-biased, so very short real secrets under ambiguous keys may be missed. Terminal Jobs and completed Pods no longer suppress orphan findings; this is useful cleanup behavior, but it assumes completed workload artifacts are historical rather than active consumers. Unusual consumers outside Pod templates, Ingress TLS, ServiceAccounts, CSI, and typed volume refs may still need future coverage.