{"id":37179223,"url":"https://github.com/octohelm/unifs","last_synced_at":"2026-01-14T20:52:01.098Z","repository":{"id":186687495,"uuid":"674490921","full_name":"octohelm/unifs","owner":"octohelm","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-10T02:40:47.000Z","size":284,"stargazers_count":0,"open_issues_count":3,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-10T04:19:26.530Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/octohelm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-08-04T04:35:08.000Z","updated_at":"2025-11-10T02:39:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"1d044802-ba83-48b1-856e-c90b9989f83d","html_url":"https://github.com/octohelm/unifs","commit_stats":null,"previous_names":["octohelm/unifs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/octohelm/unifs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/octohelm%2Funifs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/octohelm%2Funifs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/octohelm%2Funifs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/octohelm%2Funifs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/octohelm","download_url":"https://codeload.github.com/octohelm/unifs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/octohelm%2Funifs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28434500,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"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-01-14T20:52:00.577Z","updated_at":"2026-01-14T20:52:01.090Z","avatar_url":"https://github.com/octohelm.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UniFS\n\n```mermaid\nflowchart TB\n    s3_fs[S3 FS]\n    ftp_fs[Ftp FS]\n    local_fs[Local FS]\n    webdav_fs[WebDAV FS]\n    fsi(FileSystem Inteface)\n    ftp_fs \u0026 s3_fs \u0026 webdav_fs \u0026 local_fs --\u003e fsi\n    webdav_server[WebDAV Server]\n    ftp_server[Ftp Server]\n    fuse_fs[Fuse Fs]\n    go_code[Go code]\n    fsi --\u003e|mount| fuse_fs\n    fsi --\u003e|direct| go_code\n    fsi --\u003e|serve| ftp_server\n    fsi --\u003e|serve| webdav_server\n```\n\n### Supported Backends\n\n```\nftp://\u003cusername\u003e:\u003cpassword\u003e@\u003chost\u003e[\u003cbath_path\u003e]\n\nwebdav://\u003cusername\u003e:\u003cpassword\u003e@\u003chost\u003e[\u003cbath_path\u003e][?insecure=true]\n\ns3://\u003caccess_key_id\u003e:\u003caccess_key_secret\u003e@\u003chost\u003e/\u003cbucket\u003e[\u003cbath_path\u003e][?insecure=true]\n\nfile://\u003cabsolute_path\u003e\n```\n\n### CSI\n\n### Create StorageClass\n\n```yaml\napiVersion: storage.k8s.io/v1\nkind: StorageClass\nmetadata:\n  name: unifs\nprovisioner: csi-driver.unifs.octohelm.tech\nparameters:\n  csi.storage.k8s.io/provisioner-secret-name: \"${pvc.name}\"\n  csi.storage.k8s.io/provisioner-secret-namespace: \"${pvc.namespace}\"\n  csi.storage.k8s.io/node-publish-secret-name: \"${pvc.name}\"\n  csi.storage.k8s.io/node-publish-secret-namespace: \"${pvc.namespace}\"\nreclaimPolicy: Delete\n```\n\n### Create Secret \u0026\u0026 PersistentVolumeClaim\n\n```yaml\n---\napiVersion: v1\nkind: Secret\nmetadata:\n  name: fuse-file\n  namespace: storage-system--unifs\ntype: Opaque\nstringData:\n  backend: file:///data/unifs\n---\napiVersion: v1\nkind: PersistentVolumeClaim\nmetadata:\n  name: fuse-file\n  namespace: storage-system--unifs\nspec:\n  accessModes:\n    - ReadWriteOnce\n  resources:\n    requests:\n      storage: 10Gi\n  storageClassName: unifs\n  volumeMode: Filesystem\n---\napiVersion: v1\nkind: Pod\nmetadata:\n  name: task-pv-pod\n  namespace: storage-system--unifs\nspec:\n  volumes:\n    - name: pv-storage\n      persistentVolumeClaim:\n        claimName: fuse-file\n  containers:\n    - name: web\n      image: nginx\n      ports:\n        - containerPort: 80\n          name: \"http\"\n      volumeMounts:\n        - mountPath: \"/usr/share/nginx/html\"\n          name: pv-storage\n\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foctohelm%2Funifs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foctohelm%2Funifs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foctohelm%2Funifs/lists"}