{"id":19358654,"url":"https://github.com/ironcore-dev/ironcore-csi-driver","last_synced_at":"2025-04-23T11:32:20.101Z","repository":{"id":102989930,"uuid":"458627949","full_name":"ironcore-dev/ironcore-csi-driver","owner":"ironcore-dev","description":"Kubernetes Container Storage Interface (CSI) Driver for IronCore ","archived":false,"fork":false,"pushed_at":"2024-11-04T06:30:22.000Z","size":10042,"stargazers_count":3,"open_issues_count":3,"forks_count":2,"subscribers_count":6,"default_branch":"main","last_synced_at":"2024-11-04T07:19:41.367Z","etag":null,"topics":["csi","csi-driver","kubernetes"],"latest_commit_sha":null,"homepage":"https://github.com/ironcore-dev","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/ironcore-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-12T20:09:29.000Z","updated_at":"2024-10-21T11:46:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"21f65b29-6d9b-420a-bf3d-951ca37c8349","html_url":"https://github.com/ironcore-dev/ironcore-csi-driver","commit_stats":{"total_commits":333,"total_committers":10,"mean_commits":33.3,"dds":0.5825825825825826,"last_synced_commit":"a5dd795eaf1768033e75e2a5c2a87ded9ce9ef9c"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ironcore-dev%2Fironcore-csi-driver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ironcore-dev%2Fironcore-csi-driver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ironcore-dev%2Fironcore-csi-driver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ironcore-dev%2Fironcore-csi-driver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ironcore-dev","download_url":"https://codeload.github.com/ironcore-dev/ironcore-csi-driver/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223922073,"owners_count":17225636,"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","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":["csi","csi-driver","kubernetes"],"created_at":"2024-11-10T07:12:34.965Z","updated_at":"2024-11-10T07:12:35.684Z","avatar_url":"https://github.com/ironcore-dev.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IronCore CSI Driver\n\n[![REUSE status](https://api.reuse.software/badge/github.com/ironcore-dev/ironcore-csi-driver)](https://api.reuse.software/info/github.com/ironcore-dev/ironcore-csi-driver)\n[![Go Report Card](https://goreportcard.com/badge/github.com/ironcore-dev/ironcore-csi-driver)](https://goreportcard.com/report/github.com/ironcore-dev/ironcore-csi-driver)\n[![GitHub License](https://img.shields.io/static/v1?label=License\u0026message=Apache-2.0\u0026color=blue)](LICENSE)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://makeapullrequest.com)\n\nThis document provides an overview of the IronCore CSI Driver, its components, and usage instructions.\n\n## Overview\n\nThe IronCore CSI Driver is a Kubernetes storage plugin that enables the management of IronCore volumes as Kubernetes \nPersistent Volumes (PVs). The driver supports dynamic provisioning, mounting, and management of IronCore volumes.\n\n## Table of Contents\n\n- [Prerequisites](#prerequisites)\n- [Installation](#installation)\n- [Configuration](#configuration)\n- [Usage](#usage)\n- [Development](#development)\n\n## Prerequisites\n\n- Kubernetes cluster v1.20 or later\n- Go 1.16 or later for building the driver\n\n## Installation\n\nTo install the IronCore CSI Driver, clone the repository and build the binary using the following command:\n\n```bash\ngit clone https://github.com/ironcore-dev/ironcore-csi-driver.git\ncd ironcore-csi-driver\ngo build -o ironcore-csi-driver ./cmd\n```\n\n## Configuration\n\nThe driver can be configured through environment variables and command-line flags.\n\n### Environment Variables\n\n- `X_CSI_MODE`: Set the CSI driver mode. Supported modes are node and controller.\n- `KUBE_NODE_NAME`: Set the Kubernetes node name when the driver is running in node mode.\n- `VOLUME_NS`: Set the IronCore driver namespace when the driver is running in controller mode.\n\n### Command-Line Flags\n\n- `--target-kubeconfig`: Path pointing to the target kubeconfig.\n- `--ironcore-kubeconfig`: Path pointing to the IronCore kubeconfig.\n- `--driver-name`: Override the default driver name. Default value is `driver.CSIDriverName`.\n\n## Usage\n\n1. Run the IronCore CSI Driver as a controller:\n\n```bash\nexport X_CSI_MODE=controller\nexport VOLUME_NS=my-driver-namespace\n./ironcore-csi-driver --target-kubeconfig=/path/to/target/kubeconfig --ironcore-kubeconfig=/path/to/ironcore/kubeconfig\n```\n\n2. Run the IronCore CSI Driver as a node:\n\n```bash\nexport X_CSI_MODE=node\nexport KUBE_NODE_NAME=my-node-name\n./ironcore-csi-driver --target-kubeconfig=/path/to/target/kubeconfig --ironcore-kubeconfig=/path/to/ironcore/kubeconfig\n```\n\n## Development\n\nTo contribute to the development of the IronCore CSI Driver, follow these steps:\n\n1. Fork the repository and clone your fork:\n\n```bash\ngit clone https://github.com/yourusername/ironcore-csi-driver.git\ncd ironcore-csi-driver\n```\n\n2. Create a new branch for your changes:\n\n```bash\n$ git checkout -b my-new-feature\n```\n\n3. Make your changes and commit them to your branch.\n\n4. Push your branch to your fork:\n\n```bash\n$ git push origin my-new-feature\n```\n\n5. Create a pull request against the original repository.\n\nRemember to keep your fork and branch up-to-date with the original repository before submitting a pull request.\n\n## Feedback and Support\n\nFeedback and contributions are always welcome!\n\nPlease report bugs, suggestions or post questions by opening a [Github issue](https://github.com/ironcore-dev/ironcore-csi-driver/issues).\n## License\n\n[Apache License 2.0](/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fironcore-dev%2Fironcore-csi-driver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fironcore-dev%2Fironcore-csi-driver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fironcore-dev%2Fironcore-csi-driver/lists"}