mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-14 07:48:25 +00:00
22 lines
525 B
Plaintext
22 lines
525 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# k8s-unused-secret-detector
|
|
|
|
> Detect unused Kubernetes secrets.
|
|
> More information: <https://github.com/dtan4/k8s-unused-secret-detector>.
|
|
|
|
- Detect unused secrets:
|
|
|
|
`k8s-unused-secret-detector`
|
|
|
|
- Detect unused secrets in a specific namespace:
|
|
|
|
`k8s-unused-secret-detector -n {{namespace}}`
|
|
|
|
- Delete unused secrets in a specific namespace:
|
|
|
|
`k8s-unused-secret-detector -n {{namespace}} | kubectl delete secret -n {{namespace}}`
|