{"id":51064592,"url":"https://github.com/scality/crl-operator","last_synced_at":"2026-06-23T05:32:04.654Z","repository":{"id":323832171,"uuid":"1086253523","full_name":"scality/crl-operator","owner":"scality","description":"A Kubernetes operator to manage Certificate Revocation List based on cert-manager","archived":false,"fork":false,"pushed_at":"2026-06-16T04:32:38.000Z","size":262,"stargazers_count":1,"open_issues_count":14,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-16T07:26:25.851Z","etag":null,"topics":["cert-manager","certificate-revocation-lists","certificates","cluster-issuer","crl","golang","issuer","k8s","kubernetes","kubernetes-operator","operator"],"latest_commit_sha":null,"homepage":"","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/scality.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":".github/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":null,"dco":null,"cla":null}},"created_at":"2025-10-30T06:52:18.000Z","updated_at":"2026-06-15T05:24:52.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/scality/crl-operator","commit_stats":null,"previous_names":["scality/crl-operator"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/scality/crl-operator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scality%2Fcrl-operator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scality%2Fcrl-operator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scality%2Fcrl-operator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scality%2Fcrl-operator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scality","download_url":"https://codeload.github.com/scality/crl-operator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scality%2Fcrl-operator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34677382,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cert-manager","certificate-revocation-lists","certificates","cluster-issuer","crl","golang","issuer","k8s","kubernetes","kubernetes-operator","operator"],"created_at":"2026-06-23T05:32:04.044Z","updated_at":"2026-06-23T05:32:04.647Z","avatar_url":"https://github.com/scality.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![GitHub release](https://img.shields.io/github/release/scality/crl-operator.svg)](https://github.com/scality/crl-operator/releases/latest)\n[![Post Merge](https://github.com/scality/crl-operator/actions/workflows/post-merge.yaml/badge.svg)](https://github.com/scality/crl-operator/actions/workflows/post-merge.yaml)\n\n\n# crl-operator\n\nA Kubernetes operator for managing Certificate Revocation Lists (CRLs) in your cluster\nbased on ClusterIssuer/Issuer resources from cert-manager.\n\n## Description\n\nThe CRL Operator provides automated management of Certificate Revocation Lists within\nKubernetes environments. It enables cluster administrators to deploy, update, and maintain\nCRLs as custom resources.\n\nThe CRL can also be exposed in a Pod via an NGINX server, allowing clients to retrieve\nthe CRL using HTTP requests internally using a Kubernetes Service or externally via\nan Ingress resource (that can be managed by the operator as well).\n\nThe operator handles CRL lifecycle management, periodic updates, and patch of ClusterIssuer/Issuer\nresources from cert-manager to include CRL distribution points.\n\n## Getting Started\n\n### Prerequisites\n- go version v1.25.0+\n- docker\n- kubectl\n- Access to a Kubernetes v1.32+ 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/crl-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/crl-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 to update the sample CRs to fit your needs before applying them to the cluster.\n\n### To Uninstall\n\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## Contributing\n\nSee [contributing](CONTRIBUTING.md) for details.\n\n## Design\n\nSee [design](DESIGN.md) for details.\n\n## License\n\nCopyright 2025 Scality.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscality%2Fcrl-operator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscality%2Fcrl-operator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscality%2Fcrl-operator/lists"}