{"id":49884410,"url":"https://github.com/allanger/rustfs-manager-operator","last_synced_at":"2026-05-15T17:11:21.213Z","repository":{"id":345759359,"uuid":"1187213735","full_name":"allanger/rustfs-manager-operator","owner":"allanger","description":"Manage buckets and users on a RustFS instance through CRDs","archived":false,"fork":false,"pushed_at":"2026-04-20T16:02:09.000Z","size":210,"stargazers_count":2,"open_issues_count":11,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-20T17:43:28.912Z","etag":null,"topics":["kubernetes","minio","rustfs","rustfs-cli"],"latest_commit_sha":null,"homepage":"https://allanger.github.io/rustfs-manager-operator/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/allanger.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":"2026-03-20T13:22:03.000Z","updated_at":"2026-04-20T16:02:33.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/allanger/rustfs-manager-operator","commit_stats":null,"previous_names":["badhouseplants/rustfs-manager-operator"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/allanger/rustfs-manager-operator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allanger%2Frustfs-manager-operator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allanger%2Frustfs-manager-operator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allanger%2Frustfs-manager-operator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allanger%2Frustfs-manager-operator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/allanger","download_url":"https://codeload.github.com/allanger/rustfs-manager-operator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allanger%2Frustfs-manager-operator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33073060,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"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":["kubernetes","minio","rustfs","rustfs-cli"],"created_at":"2026-05-15T17:11:20.506Z","updated_at":"2026-05-15T17:11:21.205Z","avatar_url":"https://github.com/allanger.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RustFS Manager Operator\n\nAn operator to manage bucket and user on a RustFS instance through Kubernetes CRDs.\n\n## Getting started\n\nFind better docs here: \u003chttps://rustfs.badhouseplants.net\u003e\n\n\n### Install the operator\n\n```shell\nhelm install rustfs-manager-operator oci://ghcr.io/allanger/rustfs-manager-operator/helm/rustfs-manager-operator --version 0.1.2\n```\n### Connect it to a RustFS instance\n\n1. Create a values file:\n\n```yaml\n# values.yaml\nendpoint: https://your.rust.fs\nusername: admin\npassword: qwertyu9\n```\n\n2. Install the **rustfs-instance** helm chart\n\n```shell\nhelm install rustfs-instance oci://ghcr.io/allanger/rustfs-manager-operator/helm/rustfs-instance --version 0.1.2 -f ./values.yaml\n```\n\n### Start creating Buckets and Users\n\n#### Buckets\n\n```yaml\napiVersion: rustfs.badhouseplants.net/v1beta1\nkind: RustFSBucket\nmetadata:\n  name: \u003cbucket name\u003e\n  namespace: \u003capplication namespace\u003e\nspec:\n  # When cleanup is set to true, bucket will be removed from the instance\n  cleanup: false\n  # On which instance this bucket should be created\n  instance: rustfs-instance\n  # If true, bucket will be created with object locking\n  objectLock: false\n  # If true, bucket will be created with versioning\n  versioning: false\n```\n\n#### Users\n\n```yaml\napiVersion: rustfs.badhouseplants.net/v1beta1\nkind: RustFSBucketUser\nmetadata:\n  name: \u003cusername\u003e\n  namespace: \u003capplication namespace\u003e\nspec:\n  bucket: \u003ca name of the bucket CR\u003e\n  # User will be removed from the RustFS instance if set to true\n  cleanup: false\n  access: readWrite # or readOnly\n```\n\n### Access credentials via ConfigMaps and Secrets\n\n#### ConfigMap:\n\n```shell\nkubectl get configmap \u003cbucket name\u003e-bucket-info -o yaml\n\napiVersion: v1\nkind: ConfigMap\ndata:\n  AWS_BUCKET_NAME: \u003cbucket name\u003e\n  AWS_ENDPOINT_URL: \u003cendpoint\u003e\n  AWS_REGION: \u003cregion\u003e\n```\n\n#### Secret:\n\n```shell\nkubectl get secret \u003cusername\u003e-bucket-creds -o yaml\n\napiVersion: v1\nkind: ConfigMap\ndata:\n  AWS_ACCESS_KEY_ID: \u003cusername\u003e\n  AWS_SECRET_ACCESS_KEY: \u003ca generated password\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallanger%2Frustfs-manager-operator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fallanger%2Frustfs-manager-operator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallanger%2Frustfs-manager-operator/lists"}