Implement basic CSI driver

Currently can create and remove volumes, but resizing and snapshots is not supported yet
This commit is contained in:
Vitaliy Filippov
2021-05-16 01:15:43 +03:00
parent eaac1fc5d1
commit fd8244699b
22 changed files with 1808 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
VERSION ?= v0.6.3
all: build push
build:
@docker build --rm -t vitalif/vitastor-csi:$(VERSION) .
push:
@docker push vitalif/vitastor-csi:$(VERSION)