Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kubermatic/kubevirt-csi-driver-operator
KubeVirt CSI driver operator for provisioning KubeVirt user clusters storage
https://github.com/kubermatic/kubevirt-csi-driver-operator
Last synced: 9 days ago
JSON representation
KubeVirt CSI driver operator for provisioning KubeVirt user clusters storage
- Host: GitHub
- URL: https://github.com/kubermatic/kubevirt-csi-driver-operator
- Owner: kubermatic
- License: apache-2.0
- Created: 2021-12-09T12:44:30.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T21:50:24.000Z (26 days ago)
- Last Synced: 2024-10-26T09:36:14.232Z (25 days ago)
- Language: Go
- Size: 242 KB
- Stars: 0
- Watchers: 9
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KubeVirt CSI Driver Operator
Operator that installs KubeVirt CSI Driver components and initializes storage classes on tenant clusters.
## Build
### Binary
```shell
make build
```### Docker image
```shell
make docker-image
```## Manifests
### Generate
```shell
make manifests
```### Install
Deploy CRDs on k8s cluster
```shell
make install
```### Deploy
Deploys operator on k8s cluster
```shell
make deploy
```### Fetch manifests
Fetch CRD manifest
```shell
bin/kustomize build config/crd
```Fetch operator manifest
```shell
bin/kustomize build config/default
```## Run tests
```shell
make test
```