{"id":36975588,"url":"https://github.com/koithos/fakos","last_synced_at":"2026-01-13T22:05:18.766Z","repository":{"id":329306988,"uuid":"1118170137","full_name":"koithos/fakos","owner":"koithos","description":"fakos allows users to fetch state and metadata of different k8s resources (pods, nodes, daemonsets etc.) in a cleaner way than describing them","archived":false,"fork":false,"pushed_at":"2026-01-11T00:11:32.000Z","size":175,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T08:15:19.506Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/koithos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-17T11:08:59.000Z","updated_at":"2026-01-11T00:11:35.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/koithos/fakos","commit_stats":null,"previous_names":["koithos/fakos"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/koithos/fakos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koithos%2Ffakos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koithos%2Ffakos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koithos%2Ffakos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koithos%2Ffakos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/koithos","download_url":"https://codeload.github.com/koithos/fakos/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koithos%2Ffakos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400474,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-01-13T22:05:17.948Z","updated_at":"2026-01-13T22:05:18.754Z","avatar_url":"https://github.com/koithos.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fakos\n\nfakos (φακός; greek for lens) enables users to efficiently access the state, logs and metadata of different Kubernetes resources.\n\n## Features\n\nThis cli utility can:\n\n- [x] Get pod labels and annotations\n- [x] Get node labels and annotations\n- [ ] Get envs on pods\n- [ ] Get pods by node\n- [ ] Get coloured logs for different pods if getting logs by pod label\n- [ ] Get Node health and metrics\n- [ ] Get GPU state\n- [ ] Get resources in unhealthy state\n- [ ] Rollout restart changes watch\n\n## Installation\n\n### Via Cargo\n\nIf you have Rust installed, you can install fakos using cargo:\n\n```bash\ncargo install fakos\n```\n\n### Via kubectl krew\n\nOnce published to the krew index, you can install fakos as a kubectl plugin:\n\n```bash\nkubectl krew install fakos\nkubectl fakos get pods\n```\n\n### Via homebrew\n\n```bash\nbrew tap koithos/cli/fakos\nbrew install fakos\n```\n\n### From Source\n\nClone the repository and build from source:\n\n```bash\ngit clone https://github.com/koithos/fakos.git\ncd fakos\ncargo build --jobs $(sysctl -n hw.logicalcpu) --release\n# The binary will be available at target/release/fakos\n```\n\n## Usage\n\n### Global Options\n\n- `--kubeconfig \u003cPATH\u003e`: Path to kubeconfig file (default: `~/.kube/config` or `$KUBECONFIG`)\n- `-v, --verbose`: Enable verbose logging (use multiple times for increased verbosity)\n  - `-v`: WARN level\n  - `-vv`: INFO level\n  - `-vvv`: DEBUG level\n  - `-vvvv`: TRACE level\n- `--log-format \u003cFORMAT\u003e`: Log format to use (default: `plain`, options: `plain`, `json`)\n\n### Get Pods\n\nList and inspect pods in your Kubernetes cluster.\n\n#### Output Formats\n\n```bash\n# Normal output (default)\nfakos get pods -o normal\n\n# Wide output (shows additional columns)\nfakos get pods -o wide\n```\n\n#### Labels and Annotations\n\n```bash\n# Display only labels for pods\nfakos get pods --labels\n\n# Display only annotations for pods\nfakos get pods --annotations\n\n# Display both labels and annotations\nfakos get pods --labels --annotations\n\n# Get labels for a specific pod\nfakos get pods my-pod --labels -n default\n\n# Get labels for a specific pod on a specific node in a specific namespace\nfakos get pods my-pod --labels --annotations -n default --node node-1\n```\n\n### Get Nodes\n\n#### Labels and Annotations\n\n```bash\n# Display only labels for nodes\nfakos get nodes --labels\n\n# Display only annotations for nodes\nfakos get nodes --annotations\n\n# Display both labels and annotations\nfakos get nodes --labels --annotations\n\n# Get labels for a specific node\nfakos get nodes node-1 --labels\n```\n\n## Examples\n\n```bash\n# Get all pods in production namespace with verbose logging\nfakos get pods -n production -vv\n\n# Get all pods on a specific node with labels\nfakos get pods --node worker-1 --labels\n\n# Get node information with custom kubeconfig\nfakos get nodes --kubeconfig /path/to/kubeconfig\n\n# Get wide output for all pods across all namespaces\nfakos get pods -A -o wide\n\n# Get annotations for a specific pod with debug logging\nfakos get pods my-app-pod -n default --annotations -vvv\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoithos%2Ffakos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoithos%2Ffakos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoithos%2Ffakos/lists"}