{"id":42195465,"url":"https://github.com/bobbyiliev/kubegen-cli","last_synced_at":"2026-01-27T00:15:32.118Z","repository":{"id":333444226,"uuid":"1137329762","full_name":"bobbyiliev/kubegen-cli","owner":"bobbyiliev","description":"Rust based CLI for scaffolding Kubernetes operators using kube-rs","archived":false,"fork":false,"pushed_at":"2026-01-19T08:49:14.000Z","size":12,"stargazers_count":0,"open_issues_count":77,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-19T16:43:40.581Z","etag":null,"topics":["hacktoerfest","kube","kubebuilder","kubegen","kubernetes","kubers","rust"],"latest_commit_sha":null,"homepage":"","language":null,"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/bobbyiliev.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-19T08:24:30.000Z","updated_at":"2026-01-19T11:37:13.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bobbyiliev/kubegen-cli","commit_stats":null,"previous_names":["bobbyiliev/kubegen-cli"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/bobbyiliev/kubegen-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bobbyiliev%2Fkubegen-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bobbyiliev%2Fkubegen-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bobbyiliev%2Fkubegen-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bobbyiliev%2Fkubegen-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bobbyiliev","download_url":"https://codeload.github.com/bobbyiliev/kubegen-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bobbyiliev%2Fkubegen-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28792647,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:49:50.245Z","status":"ssl_error","status_checked_at":"2026-01-26T21:48:29.455Z","response_time":59,"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":["hacktoerfest","kube","kubebuilder","kubegen","kubernetes","kubers","rust"],"created_at":"2026-01-27T00:15:31.152Z","updated_at":"2026-01-27T00:15:32.022Z","avatar_url":"https://github.com/bobbyiliev.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# kubegen\n\nkubegen is a Rust based CLI for scaffolding Kubernetes operators using kube-rs.\n\nThink Kubebuilder, but for Rust.\n\n## Goals\n\n- Make writing Kubernetes operators in Rust approachable\n- Generate production ready scaffolding\n- Follow kube-rs best practices\n- Keep generated code explicit and owned by the user\n\n## What kubegen does\n\n- Scaffold a new Rust operator project\n- Generate CRDs and Rust types\n- Create reconciliation boilerplate\n- Optionally add metrics and webhooks\n\n## Non goals\n\n- Providing a runtime framework\n- Abstracting Kubernetes concepts\n- Managing operator lifecycle after generation\n\n## Project status\n\nEarly development. APIs and templates may change.\n\n## Installation\n\n### From crates.io (Recommended)\n\n```bash\ncargo install kubegen\n```\n\n### Homebrew (macOS/Linux)\n\n```bash\nbrew tap bobbyiliev/kubegen\nbrew install kubegen\n```\n\n### Download Binary\n\nDownload the latest release for your platform from the [releases page](https://github.com/bobbyiliev/kubegen-cli/releases).\n\n**Linux (x86_64)**\n```bash\ncurl -LO https://github.com/bobbyiliev/kubegen-cli/releases/latest/download/kubegen-x86_64-unknown-linux-gnu.tar.gz\ntar xzf kubegen-x86_64-unknown-linux-gnu.tar.gz\nsudo mv kubegen /usr/local/bin/\n```\n\n**macOS (Apple Silicon)**\n```bash\ncurl -LO https://github.com/bobbyiliev/kubegen-cli/releases/latest/download/kubegen-aarch64-apple-darwin.tar.gz\ntar xzf kubegen-aarch64-apple-darwin.tar.gz\nsudo mv kubegen /usr/local/bin/\n```\n\n**macOS (Intel)**\n```bash\ncurl -LO https://github.com/bobbyiliev/kubegen-cli/releases/latest/download/kubegen-x86_64-apple-darwin.tar.gz\ntar xzf kubegen-x86_64-apple-darwin.tar.gz\nsudo mv kubegen /usr/local/bin/\n```\n\n**Windows**\n\nDownload `kubegen-x86_64-pc-windows-msvc.zip` from the [releases page](https://github.com/bobbyiliev/kubegen-cli/releases) and add to your PATH.\n\n### Build from Source\n\n```bash\ngit clone https://github.com/bobbyiliev/kubegen-cli.git\ncd kubegen-cli\ncargo build --release\n# Binary will be at target/release/kubegen\n```\n\n## Usage\n\n```bash\nkubegen new my-operator\nkubegen add crd MyResource\nkubegen add metrics\nkubegen add webhook MyResource\n```\n\n## Contributing\n\nFocused and atomic PRs only.\n\nEvery feature should include:\n\n* Implementation\n* Tests\n* Documentation if user facing\n\nSee CONTRIBUTING.md for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbobbyiliev%2Fkubegen-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbobbyiliev%2Fkubegen-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbobbyiliev%2Fkubegen-cli/lists"}