{"id":19358659,"url":"https://github.com/ironcore-dev/metal-operator","last_synced_at":"2026-01-22T18:06:29.652Z","repository":{"id":232979473,"uuid":"785706631","full_name":"ironcore-dev/metal-operator","owner":"ironcore-dev","description":"Kubernetes operator for automating bare metal server discovery and provisioning","archived":false,"fork":false,"pushed_at":"2026-01-12T12:43:43.000Z","size":3156,"stargazers_count":24,"open_issues_count":63,"forks_count":10,"subscribers_count":12,"default_branch":"main","last_synced_at":"2026-01-12T18:52:43.805Z","etag":null,"topics":["baremetal","operator","provisioning","servermanagement"],"latest_commit_sha":null,"homepage":"https://ironcore-dev.github.io/metal-operator/","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/ironcore-dev.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":"CODEOWNERS","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2024-04-12T13:00:14.000Z","updated_at":"2026-01-09T16:23:50.000Z","dependencies_parsed_at":"2026-01-20T10:00:42.218Z","dependency_job_id":null,"html_url":"https://github.com/ironcore-dev/metal-operator","commit_stats":null,"previous_names":["afritzler/metal-operator","ironcore-dev/metal-operator"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ironcore-dev/metal-operator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ironcore-dev%2Fmetal-operator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ironcore-dev%2Fmetal-operator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ironcore-dev%2Fmetal-operator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ironcore-dev%2Fmetal-operator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ironcore-dev","download_url":"https://codeload.github.com/ironcore-dev/metal-operator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ironcore-dev%2Fmetal-operator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28601282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T09:39:28.479Z","status":"ssl_error","status_checked_at":"2026-01-20T09:38:10.511Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["baremetal","operator","provisioning","servermanagement"],"created_at":"2024-11-10T07:12:35.832Z","updated_at":"2026-01-20T10:01:00.286Z","avatar_url":"https://github.com/ironcore-dev.png","language":"Go","readme":"# metal-operator\n[![REUSE status](https://api.reuse.software/badge/github.com/ironcore-dev/metal-operator)](https://api.reuse.software/info/github.com/ironcore-dev/metal-operator)\n[![Go Report Card](https://goreportcard.com/badge/github.com/ironcore-dev/metal-operator)](https://goreportcard.com/report/github.com/ironcore-dev/metal-operator)\n[![GitHub License](https://img.shields.io/static/v1?label=License\u0026message=Apache-2.0\u0026color=blue)](LICENSE)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://makeapullrequest.com)\n\n`metal-operator` is a Kubernetes operator for automating bare metal server discovery and provisioning.\n\n## Description\n\nMetal-operator is a project built using Kubebuilder and controller-runtime to facilitate the discovery and provisioning \nof bare metal servers. It provides a robust and scalable solution for managing bare metal infrastructure, ensuring \nseamless integration and automation within Kubernetes environments.\n\n## Getting Started\n\n### Prerequisites\n- go version v1.22.0+\n- docker version 17.03+.\n- kubectl version v1.11.3+.\n- Access to a Kubernetes v1.11.3+ cluster.\n\n### To Deploy on the cluster\n**Build and push your image to the location specified by `IMG`:**\n\n```sh\nmake docker-build docker-push IMG=\u003csome-registry\u003e/metal-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/metal-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\u003e**NOTE**: Ensure that the samples has default values to test it out.\n\n### To Uninstall\n**Delete the instances (CRs) from the cluster:**\n\n```sh\nkubectl delete -k config/samples/\n```\n\n**Delete the APIs(CRDs) from the cluster:**\n\n```sh\nmake uninstall\n```\n\n**UnDeploy the controller from the cluster:**\n\n```sh\nmake undeploy\n```\n\n## Project Distribution\n\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/metal-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/\u003corg\u003e/metal-operator/\u003ctag or branch\u003e/dist/install.yaml\n```\n\n## Contributing\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\n## Licensing\n\nCopyright 2025 SAP SE or an SAP affiliate company and IronCore contributors. Please see our [LICENSE](LICENSE) for\ncopyright and license information. Detailed information including third-party components and their licensing/copyright\ninformation is available [via the REUSE tool](https://api.reuse.software/info/github.com/ironcore-dev/metal-operator).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fironcore-dev%2Fmetal-operator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fironcore-dev%2Fmetal-operator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fironcore-dev%2Fmetal-operator/lists"}