{"id":24994962,"url":"https://github.com/hegerdes/fizz-buzz-operator","last_synced_at":"2026-04-20T13:09:01.637Z","repository":{"id":275574116,"uuid":"924094942","full_name":"hegerdes/fizz-buzz-operator","owner":"hegerdes","description":"The most famous interview coding challenge as a Kubernetes Operator ","archived":false,"fork":false,"pushed_at":"2025-12-30T21:03:24.000Z","size":151,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T18:57:09.621Z","etag":null,"topics":["fizz-buzz","kubernetes","kubernetes-operator"],"latest_commit_sha":null,"homepage":"","language":"Go","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/hegerdes.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-01-29T12:07:40.000Z","updated_at":"2025-12-30T21:03:27.000Z","dependencies_parsed_at":"2025-02-03T12:24:18.704Z","dependency_job_id":"7e9172f7-46ac-4032-97cd-46119994e533","html_url":"https://github.com/hegerdes/fizz-buzz-operator","commit_stats":null,"previous_names":["hegerdes/fizz-buzz-operator"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/hegerdes/fizz-buzz-operator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hegerdes%2Ffizz-buzz-operator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hegerdes%2Ffizz-buzz-operator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hegerdes%2Ffizz-buzz-operator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hegerdes%2Ffizz-buzz-operator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hegerdes","download_url":"https://codeload.github.com/hegerdes/fizz-buzz-operator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hegerdes%2Ffizz-buzz-operator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32048480,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["fizz-buzz","kubernetes","kubernetes-operator"],"created_at":"2025-02-04T15:25:46.574Z","updated_at":"2026-04-20T13:09:01.614Z","avatar_url":"https://github.com/hegerdes.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fizz-buzz-operator\nThe most famous coding challenge for interviews that proves that you build ... an advanced hello-world?\n\nNow show off your skills by adding Kubernetes to your fizz-buzz tool-belt.\n\n## Description\nA simple operator that creates the desired number of pods while naming them after the fizz-buzz rules.\n## Getting Started\nJust deploy the oerator via helm or kubectl:\n```bash\n# Via helm\nhelm install hackerman\n# Or raw manifests\nkubectl apply -f https://raw.githubusercontent.com/hegerdes/fizz-buzz-operator/main/charts/install.yaml\n```\n\nThen you can deploy the ``fizz-buzz Instance`` cr:\n```yaml\napiVersion: fizz-buzz.hegerdes.com/v1alpha1\nkind: Instance\nmetadata:\n  name: hire-me\nspec:\n  prefix: hire-me\n  limit: 15\n  # Optional\n  image: docker.io/rancher/cowsay:latest\n```\n\n### Prerequisites\n- kubectl version v1.25+.\n- Access to a Kubernetes v1.25+ cluster.\n\n### To Deploy on the cluster\n\n\n## Development\n**Prerequisites:**\n- go version v1.22.0+\n- docker version 17.03+.\n- kubectl version v1.25+.\n- Access to a Kubernetes v1.25+ cluster.\n\n**Build and push your image to the location specified by `IMG`:**\n\n```sh\nmake docker-build docker-push IMG=\u003csome-registry\u003e/fizz-buzz-operator:tag\n```\n\n**NOTE:** This image ought to be published in the personal registry you specified.\nAnd it is required to have access to pull the image from the working environment.\nMake sure you have the proper permission to the registry if the above commands don’t work.\n\n**Install the CRDs into the cluster:**\n\n```sh\nmake install\n```\n\n**Deploy the Manager to the cluster with the image specified by `IMG`:**\n\n```sh\nmake deploy IMG=\u003csome-registry\u003e/fizz-buzz-operator:tag\n```\n\n\u003e **NOTE**: If you encounter RBAC errors, you may need to grant yourself cluster-admin\nprivileges or be logged in as admin.\n\n**Create instances of your solution**\nYou can apply the samples (examples) from the config/sample:\n\n```sh\nkubectl apply -k config/samples/\n```\n\n**Delete the APIs(CRDs) and controller from the cluster:**\n\n```sh\nmake uninstall \u0026\u0026 make undeploy\n```\n\n## Project Distribution\nFollowing are the steps to build the installer and distribute this project to users.\n\n1. Build the installer for the image built and published in the registry:\n\n```sh\nmake build-installer IMG=\u003csome-registry\u003e/fizz-buzz-operator:tag\n```\n\nNOTE: The makefile target mentioned above generates an 'install.yaml'\nfile in the dist directory. This file contains all the resources built\nwith Kustomize, which are necessary to install this project without\nits dependencies.\n\n2. Using the installer\n\nUsers can just run kubectl apply -f \u003cURL for YAML BUNDLE\u003e to install the project, i.e.:\n\n```sh\nkubectl apply -f https://raw.githubusercontent.com/hegerdes/fizz-buzz-operator/main/charts/install.yaml\n```\n\n## Contributing\nThis a a fun project. If you have ideas on how the simplest problems can be solved in a even more complicated way, feel free to open a PR or Issue. But since this was just a finger-tipps excises please do not expect long term commitment for this project.\n\n**NOTE:** Run `make help` for more information on all potential `make` targets\n\nMore information can be found via the [Kubebuilder Documentation](https://book.kubebuilder.io/introduction.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhegerdes%2Ffizz-buzz-operator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhegerdes%2Ffizz-buzz-operator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhegerdes%2Ffizz-buzz-operator/lists"}