We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The latest version mentions an "all namespaces" option that does not exist.
$ kubectl unused-volumes --help | grep namespaces # Get all unused volumes in all namespaces kubectl unused-volumes --all-namespaces $ kubectl unused-volumes --all-namespaces unknown flag: --all-namespaces $ kubectl unused-volumes --version unknown flag: --version
Workaround :
$ for NAMESPACE in $(kubectl get namespaces | awk '{print $1}') ; do echo " --- ${NAMESPACE} ---" ; kubectl unused-volumes --namespace ${NAMESPACE} --no-headers | egrep -v '^$' ; done
The text was updated successfully, but these errors were encountered:
Any progress? 😅
Sorry, something went wrong.
No branches or pull requests
The latest version mentions an "all namespaces" option that does not exist.
Workaround :
The text was updated successfully, but these errors were encountered: