{"id":44755019,"url":"https://github.com/serverscom/serverscom-rbs-csi","last_synced_at":"2026-02-16T00:05:27.671Z","repository":{"id":327652315,"uuid":"1084157386","full_name":"serverscom/serverscom-rbs-csi","owner":"serverscom","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-31T10:13:40.000Z","size":65,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-04T16:07:16.226Z","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/serverscom.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":"2025-10-27T09:55:23.000Z","updated_at":"2025-12-31T10:12:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/serverscom/serverscom-rbs-csi","commit_stats":null,"previous_names":["serverscom/serverscom-rbs-csi"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/serverscom/serverscom-rbs-csi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverscom%2Fserverscom-rbs-csi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverscom%2Fserverscom-rbs-csi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverscom%2Fserverscom-rbs-csi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverscom%2Fserverscom-rbs-csi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/serverscom","download_url":"https://codeload.github.com/serverscom/serverscom-rbs-csi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverscom%2Fserverscom-rbs-csi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29494291,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T00:00:57.352Z","status":"ssl_error","status_checked_at":"2026-02-15T23:56:34.338Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2026-02-16T00:05:25.711Z","updated_at":"2026-02-16T00:05:27.660Z","avatar_url":"https://github.com/serverscom.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RBS CSI Driver\n\nKubernetes CSI driver for Remote Block Storage (RBS) - dynamic provisioning and management of iSCSI block volumes.\n\n## Features\n\n- Dynamic volume provisioning via RBS API\n- iSCSI block device attachment\n- Online volume expansion\n- Multiple filesystems: ext4, ext3, xfs, btrfs\n- CHAP authentication\n- **PVC naming** - volumes named by PVC instead of UUID\n- **Label propagation** - StorageClass → PVC → RBS volume labels\n- **Idempotent operations** - safe retries via label lookup\n\n## Quick Start\n\n```bash\n# 1. Create credentials secret\nkubectl create secret generic rbs-csi-secret \\\n  --from-literal=api-url=\"https://api.servers.com/v1\" \\\n  --from-literal=api-token=\"your-api-token\" \\\n  --namespace=kube-system\n\n# 2. Deploy latest driver version\nkubectl apply -f https://github.com/serverscom/serverscom-rbs-csi/releases/latest/download/rbs-csi-deploy.yaml\n\n# or specific version\nkubectl apply -f https://github.com/serverscom/serverscom-rbs-csi/releases/download/v0.1.0/rbs-csi-deploy.yaml\n\n# 3. Create StorageClass\nkubectl apply -f examples/storageclass.yaml\n\n# 4. Create PVC\nkubectl apply -f examples/pvc.yaml\n```\n\n## Configuration\n\n### StorageClass Parameters\n\n```yaml\napiVersion: storage.k8s.io/v1\nkind: StorageClass\nmetadata:\n  name: rbs-ssd\n  labels:\n    environment: production\nprovisioner: rbs.csi.servers.com\nparameters:\n  rbs.csi.servers.com/location: \"40\"\n  rbs.csi.servers.com/flavor: \"16997\"\n  # names for location and flavor also supported\n  # rbs.csi.servers.com/flavor: \"SSD-High\" \n  # rbs.csi.servers.com/location: \"AMS1\"\n  rbs.csi.servers.com/labels: |\n    {\n      \"managed-by\": \"kubernetes\"\n    }\nallowVolumeExpansion: true\nvolumeBindingMode: WaitForFirstConsumer\n```\n\n## Label Propagation\n\nLabels merge with priority: **System \u003e PVC \u003e StorageClass**\n\nExample:\n```yaml\n# StorageClass labels\nparameters:\n  rbs.csi.servers.com/labels: |\n    {\n      \"managed-by\": \"kubernetes\"\n    }\n\n---\n# PVC labels\nmetadata:\n  labels:\n    app: database\n    environment: staging  # Overrides StorageClass\n\n# Result on RBS volume:\n# {\n#   \"pvc-uuid\": \"abc-123\",\n#   \"pvc-namespace\": \"default\",\n#   \"app\": \"database\",\n#   \"environment\": \"staging\",\n#   \"managed-by\": \"kubernetes\"\n# }\n```\n\n## Architecture\n\n**CSI Controller** (Deployment):\n- CreateVolume, DeleteVolume, ExpandVolume\n- RBS API integration\n\n**CSI Node** (DaemonSet):\n- StageVolume, UnstageVolume\n- iSCSI discovery and login\n- Filesystem formatting and mounting\n\n## Examples\n\n### Basic PVC\n\n```yaml\napiVersion: v1\nkind: PersistentVolumeClaim\nmetadata:\n  name: my-data\n  labels:\n    app: nginx\nspec:\n  accessModes:\n    - ReadWriteOnce\n  storageClassName: rbs-ssd\n  resources:\n    requests:\n      storage: 10Gi\n```\n\n### Volume Expansion\n\n```yaml\nspec:\n  resources:\n    requests:\n      storage: 20Gi  # Increased from 10Gi\n```\n\n\n## License\n\nApache 2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserverscom%2Fserverscom-rbs-csi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fserverscom%2Fserverscom-rbs-csi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserverscom%2Fserverscom-rbs-csi/lists"}