Adds kubectl-deprecated_api

This commit is contained in:
Jonas Forsberg 2025-03-13 09:11:47 +01:00
parent 3b6d1f3f84
commit 3ed5cd92a9
2 changed files with 13 additions and 0 deletions

View File

@ -23,3 +23,9 @@ Usage:
| KUBECTL_RSH_IMAGE_TAG | latest | Image tag to use | | KUBECTL_RSH_IMAGE_TAG | latest | Image tag to use |
| KUBECTL_RSH_NAMESPACE | default | Namespace to create the rsh pod in | | KUBECTL_RSH_NAMESPACE | default | Namespace to create the rsh pod in |
| KUBECTL_RSH_POD_CREATE_TIMEOUT | 3 | Minutes to wait before failing to create pod | | KUBECTL_RSH_POD_CREATE_TIMEOUT | 3 | Minutes to wait before failing to create pod |
## kubectl-deprecated_api
Lists APIs flagged as deprecated
Usage:
kubectl deprecated-api

7
kubectl-deprecated_api Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
if ! command -v prom2json > /dev/null; then
echo "You need prom2json to use this command"
exit 1
fi
kubectl get --raw /metrics | prom2json | jq -c '.[] | select(.name=="apiserver_requested_deprecated_apis").metrics[].labels' | column -t -s'{}[],"'