Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

List Kubernetes objects in a problematic state

License

NotificationsYou must be signed in to change notification settings

dastergon/kubectl-janitor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build StatusGo Report CardLICENSEReleases

kubectl janitor is a kubectl plugin that assists in finding objects in a problematic state in your Kubernetes cluster.

Introduction

Troubleshooting Kubernetes clusters sometimes requires acombination ofkubectl commands and other command-line tools such asjq to do correlations around the issues that the various objects might have. Moreover, sometimes the supported options of the--field-selector flag might belimited.

During troubleshooting scenarios, people need to identify the issues quickly without worrying about remembering all the different command combinations. The primary goal of this plugin is to collect some commonly executed kubectl command patterns to identify objects in a problematic state in the cluster and reduce the cognitive load for people troubleshooting.

Installing

Krew

You can installkubectl janitor using theKrew, the package manager for kubectl plugins.

Once you have Krewinstalled run the following command:

kubectl krew install janitor

Releases

Check therelease page for the full list of pre-built assets.

Install

  1. Download one of the releases that are compatible with your os/arch.
  2. Unzip to getkubectl-janitor
  3. Add it to yourPATH or move it to a path already in inPATH (i.e.,/usr/local/bin)

Source

go get -u github.com/dastergon/kubectl-janitor/cmd/kubectl-janitor

This command will download and compilekubectl-janitor.

Usage

To get the full list of commands with examples:

kubectl janitor

Features

List Pods that are in a pending state (waiting to be scheduled)

kubectl janitor pods unscheduled

List Pods in an unhealthy state

kubectl janitor pods unhealthy

List Pods that are currently running but not ready for some reason

kubectl janitor pods unready

List the current statuses of the Pods and their respective count

kubectl janitor pods status

List Jobs that have failed to run and have restartPolicy: Never

kubectl janitor jobs failed

List PesistentVolumes that are available for claim

kubectl janitor pvs unclaimed

List PersistentVolumeClaims in a pending state (unbound)

kubectl janitor pvcs pending

You can use the-A or--all-namespaces flag to search for objects in all namespaces.

You can use the--no-headers flag to avoid showing the column names.

Cleanup

If you have installed the plugin via thekrew command. You can remove the plugin by using the same tool:

kubectl krew uninstall kubectl-janitor

Or, you can "uninstall" this plugin from kubectl by simply removing it from your PATH:

rm /usr/local/bin/kubectl-janitor

Author

Pavlos Ratis@dastergon.

License

Apache 2.0.


[8]ページ先頭

©2009-2025 Movatter.jp