Skip to content

Instantly share code, notes, and snippets.

@Addono
Last active August 11, 2022 08:07
Show Gist options
  • Save Addono/9db7d2d1885ca8b4c6e629f9ac03a116 to your computer and use it in GitHub Desktop.
Save Addono/9db7d2d1885ca8b4c6e629f9ac03a116 to your computer and use it in GitHub Desktop.
Check for outdated resources in Kubernetes cluster
#
# Checks for all resources in a Kubernetes cluster whether they are
# deprecated or removed in a future version.
#
# For available versions of Pluto, see:
# https://quay.io/repository/fairwinds/pluto?tab=tags
#
TARGET_K8S_VERSION="v1.23.8"
kubectl get all --output yaml --all-namespaces | docker run --rm quay.io/fairwinds/pluto:v5.10 detect - -t k8s=$TARGET_K8S_VERSION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment