{"id":29064520,"url":"https://github.com/cobaltcore-dev/khalkeon","last_synced_at":"2025-06-27T09:07:36.784Z","repository":{"id":298900068,"uuid":"887783118","full_name":"cobaltcore-dev/khalkeon","owner":"cobaltcore-dev","description":"operator to merge ingition snippets","archived":false,"fork":false,"pushed_at":"2025-06-23T08:56:02.000Z","size":157,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-06-23T09:44:30.308Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/cobaltcore-dev.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}},"created_at":"2024-11-13T09:26:07.000Z","updated_at":"2025-06-23T08:56:05.000Z","dependencies_parsed_at":"2025-06-13T14:27:12.173Z","dependency_job_id":"28ad5708-6be7-4e4e-9033-4ea0e67c3a17","html_url":"https://github.com/cobaltcore-dev/khalkeon","commit_stats":null,"previous_names":["cobaltcore-dev/khalkeon"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cobaltcore-dev/khalkeon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cobaltcore-dev%2Fkhalkeon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cobaltcore-dev%2Fkhalkeon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cobaltcore-dev%2Fkhalkeon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cobaltcore-dev%2Fkhalkeon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cobaltcore-dev","download_url":"https://codeload.github.com/cobaltcore-dev/khalkeon/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cobaltcore-dev%2Fkhalkeon/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262227890,"owners_count":23278266,"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":[],"created_at":"2025-06-27T09:07:17.180Z","updated_at":"2025-06-27T09:07:36.740Z","avatar_url":"https://github.com/cobaltcore-dev.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# khalkeon\n\n## About this project\n\nKhalkeon is a tool designed to streamline and automate the process of merging multiple [coreos ignitions](github.com/coreos/ignition). It ensures that the resulting configurations are consistent, valid, and ready for deployment.\n\n## Requirements and Setup\n\n### Prerequisites\n- go version v1.23.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/khalkeon: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/khalkeon:tag\n```\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**Validate ignition was created successfully**\nYou can check the result of ignitions merging in the secret data:\n\n```sh\nkubectl get secret target --template={{.data.config}} | base64 --decode | jq .\n```\n\n### To Uninstall\n**Delete the instances (CRs) from the cluster:**\n\n```sh\nkubectl delete -k config/samples/\n```\n\n**UnDeploy the controller from the cluster:**\n\n```sh\nmake undeploy\n```\n\n**Delete the APIs(CRDs) from the cluster:**\n\n```sh\nmake uninstall\n```\n\n## Support, Feedback, Contributing\n\nThis project is open to feature requests/suggestions, bug reports etc. via [GitHub issues](https://github.com/cobaltcore-dev/khalkeon/issues). Contribution and feedback are encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our [Contribution Guidelines](https://github.com/cobaltcore-dev/khalkeon/CONTRIBUTING.md).\n\n## Security / Disclosure\nIf you find any bug that may be a security problem, please follow our instructions at [in our security policy](https://github.com/cobaltcore-dev/khalkeon/security/policy) on how to report it. Please do not create GitHub issues for security-related doubts or problems.\n\n## Code of Conduct\n\nWe as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone. By participating in this project, you agree to abide by its [Code of Conduct](https://github.com/SAP/.github/blob/main/CODE_OF_CONDUCT.md) at all times.\n\n## Licensing\n\nCopyright 2025 SAP SE or an SAP affiliate company and IronCore contributors. Please see our [LICENSE](https://github.com/cobaltcore-dev/khalkeon/LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/cobaltcore-dev/khalkeon).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcobaltcore-dev%2Fkhalkeon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcobaltcore-dev%2Fkhalkeon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcobaltcore-dev%2Fkhalkeon/lists"}