{"id":13644819,"url":"https://github.com/bergerx/kubectl-status","last_synced_at":"2025-12-14T21:53:38.549Z","repository":{"id":37057600,"uuid":"239876092","full_name":"bergerx/kubectl-status","owner":"bergerx","description":"A kubectl plugin to print a human-friendly output that focuses on the status fields of the resources in kubernetes.","archived":false,"fork":false,"pushed_at":"2025-02-13T22:50:00.000Z","size":6524,"stargazers_count":109,"open_issues_count":42,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T03:05:49.567Z","etag":null,"topics":["kubectl-plugin","kubectl-plugins","kubernetes"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bergerx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-11T22:17:02.000Z","updated_at":"2025-02-25T18:01:25.000Z","dependencies_parsed_at":"2023-02-14T08:17:31.458Z","dependency_job_id":"0fd35e52-b6a8-4d09-afcd-ae38fbb5a14a","html_url":"https://github.com/bergerx/kubectl-status","commit_stats":{"total_commits":291,"total_committers":3,"mean_commits":97.0,"dds":0.2955326460481099,"last_synced_commit":"45b5e07e7c3dfc5d8150fe3518240cb2684cceee"},"previous_names":["bergerx/kubectl-resource-status"],"tags_count":35,"template":false,"template_full_name":"replicatedhq/krew-plugin-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bergerx%2Fkubectl-status","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bergerx%2Fkubectl-status/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bergerx%2Fkubectl-status/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bergerx%2Fkubectl-status/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bergerx","download_url":"https://codeload.github.com/bergerx/kubectl-status/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247430871,"owners_count":20937874,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["kubectl-plugin","kubectl-plugins","kubernetes"],"created_at":"2024-08-02T01:02:14.018Z","updated_at":"2025-12-14T21:53:38.402Z","avatar_url":"https://github.com/bergerx.png","language":"Go","funding_links":[],"categories":["Containers","Go"],"sub_categories":["Kubernetes"],"readme":"# kubectl status\n\nA `kubectl` plugin to print a human-friendly output that focuses on the status fields of the resources in kubernetes.\n\nJust a different representation of the kubernetes resources (next to `get` and `describe`).\n\nThis plugin uses templates for well-known API conventions and has support for hardcoded resources. Not all resources are\nfully supported.\n\n- [Installation](#installation)\n    * [Upgrade](#upgrade)\n- [Demo](#demo)\n- [Features](#features)\n- [Usage](#usage)\n- [Development](#development)\n    * [Guidelines](./CONTRIBUTING.md#general-guidelines)\n- [License](#license)\n\n## Installation\n\nYou can install `kubectl status` using the [Krew](https://github.com/kubernetes-sigs/krew), the package manager for\nkubectl plugins.\n\nAfter you [install Krew](https://krew.sigs.k8s.io/docs/user-guide/setup/install/), just run:\n\n```bash\nkubectl krew install status\nkubectl status --help\n```\n\n### Upgrade\n\nAssuming you installed using [Krew](https://github.com/kubernetes-sigs/krew):\n\n```bash\nkubectl krew upgrade status\n```\n\n## Demo\n\nExample Pod:\n![pod](assets/pod.png)\n\nExample StatefulSet:\n![statefulset](assets/statefulset.png)\n\nExample Deployment and ReplicaSet\n![deployment-replicaset](assets/deployment-replicaset.png)\n\nExample Service:\n![service](assets/service.png)\n\n## Features\n\n* aims for ease of understanding the status of a given resource,\n* aligned with other kubectl cli subcommand usages (just like `kubectl get` or `kubectl describe`),\n* uses colors extensively for a better look and feel experience, while a white-ish output means everything is ok,\n  red-ish output strongly indicates something wrong,\n* erroneous/impacting states are explicit and obvious,\n* explicit messages for not-so-easy-to-understand status (e.g., ongoing rollout),\n* goes the extra mile for better expressing the status (e.g., show spec diff for ongoing rollouts),\n* compact, non-extensive output to keep it sharp,\n* no external dependencies, doesn't shell out, and so doesn't depend on client/workstation configuration\n\n## Usage\n\nIn most cases, replacing a `kubectl get ...` with a `kubectl status ...` would be sufficient.\n\nExamples:\n\n```bash\nkubectl status pods                     # Show status of all pods in the current namespace\nkubectl status pods --all-namespaces    # Show status of all pods in all namespaces\nkubectl status deploy,sts               # Show status of all Deployments and StatefulSets in the current namespace\nkubectl status nodes                    # Show status of all nodes\nkubectl status pod my-pod1 my-pod2      # Show status of some pods\nkubectl status pod/my-pod1 pod/my-pod2  # Same with previous\nkubectl status svc/my-svc1 pod/my-pod2  # Show status of various resources\nkubectl status deployment my-dep        # Show status of a particular deployment\nkubectl status deployments.v1.apps      # Show deployments in the \"v1\" version of the \"apps\" API group.\nkubectl status node -l node-role.kubernetes.io/master  # Show status of nodes marked as master\n```\n\n## Development\n\nPlease see [CONTRIBUTING.md](./CONTRIBUTING.md) file for development related documents.\n\n## License\n\nApache 2.0. See [LICENSE](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbergerx%2Fkubectl-status","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbergerx%2Fkubectl-status","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbergerx%2Fkubectl-status/lists"}