{"id":13396210,"url":"https://github.com/corneliusweig/ketall","last_synced_at":"2025-04-12T19:46:11.588Z","repository":{"id":38361472,"uuid":"170769233","full_name":"corneliusweig/ketall","owner":"corneliusweig","description":"Like `kubectl get all`, but get really all resources","archived":false,"fork":false,"pushed_at":"2023-12-06T15:08:38.000Z","size":4878,"stargazers_count":676,"open_issues_count":15,"forks_count":28,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-10-30T03:40:05.927Z","etag":null,"topics":["get","k8s","kubectl","kubectl-plugin","kubectl-plugins","overview","resource-list","resources"],"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/corneliusweig.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"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":"2019-02-14T22:52:51.000Z","updated_at":"2024-10-24T12:45:54.000Z","dependencies_parsed_at":"2024-05-30T08:04:12.975Z","dependency_job_id":"68d72799-437b-4e42-9690-cd7459782d35","html_url":"https://github.com/corneliusweig/ketall","commit_stats":null,"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corneliusweig%2Fketall","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corneliusweig%2Fketall/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corneliusweig%2Fketall/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corneliusweig%2Fketall/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/corneliusweig","download_url":"https://codeload.github.com/corneliusweig/ketall/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248625491,"owners_count":21135513,"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":["get","k8s","kubectl","kubectl-plugin","kubectl-plugins","overview","resource-list","resources"],"created_at":"2024-07-30T18:00:42.427Z","updated_at":"2025-04-12T19:46:11.566Z","avatar_url":"https://github.com/corneliusweig.png","language":"Go","funding_links":[],"categories":["kubectl Plugins","Go","Containers","others","Kubernetes"],"sub_categories":["Installing plugins via awesome-kubectl-plugins","Kubernetes","K8s Tools"],"readme":"# ketall\n[![Build Status](https://travis-ci.com/corneliusweig/ketall.svg?branch=master)](https://travis-ci.com/corneliusweig/ketall)\n[![Go Report Card](https://goreportcard.com/badge/corneliusweig/ketall)](https://goreportcard.com/report/corneliusweig/ketall)\n[![LICENSE](https://img.shields.io/github/license/corneliusweig/ketall.svg)](https://github.com/corneliusweig/ketall/blob/master/LICENSE)\n[![Releases](https://img.shields.io/github/release-pre/corneliusweig/ketall.svg)](https://github.com/corneliusweig/ketall/releases)\n\u003c!-- [![Code Coverage](https://codecov.io/gh/corneliusweig/ketall/branch/master/graph/badge.svg)](https://codecov.io/gh/corneliusweig/ketall) --\u003e\n\nKubectl plugin to show really all kubernetes resources\n\n## Intro\nFor a complete overview of all resources in a kubernetes cluster, `kubectl get all --all-namespaces` is not enough, because it simply does not show everything.\nThis helper lists _really_ all resources the cluster has to offer.\n\n## Demo\n![ketall demo](doc/demo.gif \"ketall demo\")\n\n## Examples\nGet all resources...\n- ... excluding events (this is hardly ever useful)\n  ```bash\n  ketall\n  ```\n\n- ... _including_ events\n  ```bash\n  ketall --exclude=\n  ```\n\n- ... created in the last minute\n  ```bash\n  ketall --since 1m\n  ```\n  This flag understands typical human-readable durations such as `1m` or `1y1d1h1m1s`.\n\n- ... in the default namespace\n  ```bash\n  ketall --namespace=default\n  ```\n\n- ... at cluster level\n  ```bash\n  ketall --only-scope=cluster\n  ```\n\n- ... using list of cached server resources\n  ```bash\n  ketall --use-cache\n  ```\n  Note that this may fail to show __really__ everything, if the http cache is stale.\n\n- ... and combine with common `kubectl` options\n  ```bash\n  KUBECONFIG=otherconfig ketall -o name --context some --namespace kube-system --selector run=skaffold\n  ```\n\nAlso see [Usage](doc/USAGE.md).\n\n## Installation\nThere are several ways to install `ketall`. The recommended installation method is via `krew`.\n\n### Via krew\nKrew is a `kubectl` plugin manager. If you have not yet installed `krew`, get it at\n[https://github.com/kubernetes-sigs/krew](https://github.com/kubernetes-sigs/krew).\nThen installation is as simple as\n```bash\nkubectl krew install get-all\n```\nThe plugin will be available as `kubectl get-all`, see [doc/USAGE](doc/USAGE.md) for further details.\n\n### Binaries\nWhen using the binaries for installation, also have a look at [doc/USAGE](doc/USAGE.md).\n\n#### Linux\n```bash\ncurl -Lo ketall.gz https://github.com/corneliusweig/ketall/releases/download/v1.3.8/ketall-amd64-linux.tar.gz \u0026\u0026 \\\n  gunzip ketall.gz \u0026\u0026 chmod +x ketall \u0026\u0026 mv ketall $GOPATH/bin/\n```\n\n#### OSX\n```bash\ncurl -Lo ketall.gz https://github.com/corneliusweig/ketall/releases/download/v1.3.8/ketall-amd64-darwin.tar.gz \u0026\u0026 \\\n  gunzip ketall.gz \u0026\u0026 chmod +x ketall \u0026\u0026 mv ketall $GOPATH/bin/\n```\n\n#### Windows\n[https://github.com/corneliusweig/ketall/releases/download/v1.3.8/ketall-amd64-windows.zip](https://github.com/corneliusweig/ketall/releases/download/v1.3.8/ketall-amd64-windows.zip)\n\n### From source\n\n#### Build on host\n\nRequirements:\n - go 1.16 or newer\n - GNU make\n - git\n\nCompiling:\n```bash\nexport PLATFORMS=$(go env GOOS)\nmake all   # binaries will be placed in out/\n```\n\n#### Build in docker\nRequirements:\n - docker\n\nCompiling:\n```bash\nmkdir ketall \u0026\u0026 chdir ketall\ncurl -Lo Dockerfile https://raw.githubusercontent.com/corneliusweig/ketall/master/Dockerfile\ndocker build . -t ketall-builder\ndocker run --rm -v $PWD:/go/bin/ --env PLATFORMS=$(go env GOOS) ketall-builder\ndocker rmi ketall-builder\n```\nBinaries will be placed in the current directory.\n\n## Future\n- additional arguments could be used to filter the result set\n\n### Credits\nIdea by @ahmetb https://twitter.com/ahmetb/status/1095374856156196864\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorneliusweig%2Fketall","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorneliusweig%2Fketall","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorneliusweig%2Fketall/lists"}