deprek8
A CLI tool that allows to list deprecated deployed Kubernetes resources from Helm or simply k8s objects.
Table of Contents
-
About The Project
-
Usage
-
Setup
About The Project
deprek8
is a CLI tool that :
- List deployed Helm Charts containing deprecated Kubernetes objects
- List deprecated Kubernetes resources deployed in a cluster
Usage
List deprecated Helm charts resources :
deprek8 helm [--output outputType] [--export]
-o, --output string Choose type of output (json|yaml|text) (default: "text")
-e, --export bool Save output to csv file (default: false)
List deprecated Kubernetes resources :
deprek8 kube [--output outputType] [--export]
-o, --output string Choose type of output (json|yaml|text) (default: "text")
-e, --export bool Save output to csv file (default: false)
Setup
-
Build locally :
make build
-
Build and install :
make install
This command will build and install the binary into /usr/local/bin
. It will also create a .deprek8
directory in the user's home directory with the config.yaml
config file.
-
Uninstall :
make uninstall