{"id":22577318,"url":"https://github.com/mrjosh/fortress-csi","last_synced_at":"2026-05-15T22:03:34.609Z","repository":{"id":106096524,"uuid":"451125236","full_name":"mrjosh/fortress-csi","owner":"mrjosh","description":"Container Storage Interface (CSI) Driver for Fortress Block Storage","archived":false,"fork":false,"pushed_at":"2022-01-23T14:44:37.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-09-12T23:23:47.601Z","etag":null,"topics":["container-storage-interface","csi-driver","fortress-k8s","kubernetes"],"latest_commit_sha":null,"homepage":"","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/mrjosh.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}},"created_at":"2022-01-23T14:15:25.000Z","updated_at":"2024-08-26T19:20:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"0550434d-5eae-4c85-8e37-d268fd1d693d","html_url":"https://github.com/mrjosh/fortress-csi","commit_stats":null,"previous_names":["mrjosh/fortress-csi"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mrjosh/fortress-csi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrjosh%2Ffortress-csi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrjosh%2Ffortress-csi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrjosh%2Ffortress-csi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrjosh%2Ffortress-csi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrjosh","download_url":"https://codeload.github.com/mrjosh/fortress-csi/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrjosh%2Ffortress-csi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010148,"owners_count":26084692,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"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":["container-storage-interface","csi-driver","fortress-k8s","kubernetes"],"created_at":"2024-12-08T04:13:27.878Z","updated_at":"2025-10-12T03:32:08.770Z","avatar_url":"https://github.com/mrjosh.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fortress-csi\n\nThe Container Storage Interface ([CSI](https://github.com/container-storage-interface/spec)) Driver for Fortress Block Storage\nThis driver allows you to use Fortress Block Storage with your container orchestrator.\n\nMore information about the CSI and Kubernetes can be found: [CSI Spec](https://github.com/container-storage-interface/spec) and [Kubernetes CSI](https://kubernetes-csi.github.io/docs/example.html)\n\n\n## Installation\n### Requirements\n\n- `--allow-privileged` must be enabled for the API server and kubelet\n\n### Kubernetes secret\n\nIn order for the csi to work properly, you will need to deploy a [kubernetes secret](https://kubernetes.io/docs/concepts/configuration/secret/). To obtain a API key\n\nThe `secret.yml` definition is as follows.\n```yaml\napiVersion: v1\nkind: Secret\nmetadata:\n  name: fortress-csi\n  namespace: kube-system\nstringData:\n  # Replace the api-key with a proper value\n  api-key: \"FORTRESS_API_KEY\"\n```\n\nTo create this `secret.yml`, you must run the following\n\n```sh\n$ kubectl create -f secret.yml            \nsecret/fortress-csi created\n```\n\n### Deploying the CSI\n\nTo deploy the latest release of the CSI to your Kubernetes cluster, run the following:\n\n`kubectl apply -f https://raw.githubusercontent.com/mrjosh/fortress-csi/develop/chart/fortress.yaml`\n\n\n### Validating\n\nThe deployment will create a [Storage Class](https://kubernetes.io/docs/concepts/storage/storage-classes/) which will be used to create your volumes\n\n```sh\n$ kubectl get storageclass\nNAME                               PROVISIONER             RECLAIMPOLICY   VOLUMEBINDINGMODE      ALLOWVOLUMEEXPANSION   AGE\nfortress-block-storage (default)   fortress                Delete          Immediate              false                  119m\n```\n\nTo further validate the CSI, create a [PersistentVolumeClaim](https://kubernetes.io/docs/concepts/storage/persistent-volumes/)\n\n```yaml\napiVersion: v1\nkind: PersistentVolumeClaim\nmetadata:\n  name: csi-pvc\nspec:\n  accessModes:\n  - ReadWriteOnce\n  resources:\n    requests:\n      storage: 1Gi\n  storageClassName: fortress-block-storage\n```\n\nNow, take the yaml shown above and create a `pvc.yml` and run:\n\n`kubectl create -f pvc.yml`\n\nYou can see that you have a `PersistentVolume` created by your Claim\n\n```sh\n$ kubectl get pv\nNAME                   CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS     CLAIM             STORAGECLASS             REASON   AGE\npvc-0d87f99b8d5f4419   1Gi        RWO            Delete           Bound      default/csi-pvc   fortress-block-storage            118m\n``` \n\n## Contributing Guidelines\nIf you are interested in improving or helping with fortress-csi, please feel free to open an issue or PR!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrjosh%2Ffortress-csi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrjosh%2Ffortress-csi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrjosh%2Ffortress-csi/lists"}