{"id":13742634,"url":"https://github.com/geritol/secret-backup-operator","last_synced_at":"2026-01-16T17:11:52.449Z","repository":{"id":37881658,"uuid":"261088761","full_name":"geritol/secret-backup-operator","owner":"geritol","description":"Kubernetes operator for backing up secrets","archived":false,"fork":false,"pushed_at":"2024-05-31T12:48:52.000Z","size":298,"stargazers_count":13,"open_issues_count":8,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-09T00:34:21.847Z","etag":null,"topics":["kubernetes","kubernetes-operator","kubernetes-secrets"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/geritol.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}},"created_at":"2020-05-04T05:31:33.000Z","updated_at":"2021-10-12T00:33:40.000Z","dependencies_parsed_at":"2024-08-03T05:01:20.157Z","dependency_job_id":"1d3d7285-8ccc-4a60-a9e9-f2073fd4804c","html_url":"https://github.com/geritol/secret-backup-operator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/geritol/secret-backup-operator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geritol%2Fsecret-backup-operator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geritol%2Fsecret-backup-operator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geritol%2Fsecret-backup-operator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geritol%2Fsecret-backup-operator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geritol","download_url":"https://codeload.github.com/geritol/secret-backup-operator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geritol%2Fsecret-backup-operator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28480081,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"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":["kubernetes","kubernetes-operator","kubernetes-secrets"],"created_at":"2024-08-03T05:00:34.347Z","updated_at":"2026-01-16T17:11:52.420Z","avatar_url":"https://github.com/geritol.png","language":"JavaScript","funding_links":[],"categories":["Repository is obsolete"],"sub_categories":["Awesome Operators in the Wild"],"readme":"# Secret backup operator\n\nAn operator to backup secrets on a Kubernetes cluster.  \nBackup happens when secrets are modified.  \nBackup data is stored in an other secret `\u003csecret-name\u003e-backup`, that has a single key `BACKUP` containing the secrets versions in a JSON encoded list.\n\n## Setup\n\nTo be able to run this on a cluster you need to deploy a Deployment that runs an image built using the provided `Dockerfile`, the pods need to run with a `ServiceAccount` that is authorized to create, read, watch and edit secrets. Eg.:\n\n```yaml\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n  name: secret-operator-service-account\n  namespace: some-namepace\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n  name: secret-reader\nrules:\n  - apiGroups: [\"\"]\n    resources: [\"secrets\"]\n    verbs: [\"get\", \"watch\", create\", \"update\", \"patch\"]\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n  name: read-secrets\n  namespace: default\nsubjects:\n  - kind: ServiceAccount\n    name: secret-operator-service-account\n    namespace: some-namepace\nroleRef:\n  kind: ClusterRole\n  name: secret-reader\n  apiGroup: rbac.authorization.k8s.io\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeritol%2Fsecret-backup-operator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeritol%2Fsecret-backup-operator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeritol%2Fsecret-backup-operator/lists"}