Currently can create and remove volumes, but resizing and snapshots is not supported yet
10 lines
153 B
Makefile
10 lines
153 B
Makefile
VERSION ?= v0.6.3
|
|
|
|
all: build push
|
|
|
|
build:
|
|
@docker build --rm -t vitalif/vitastor-csi:$(VERSION) .
|
|
|
|
push:
|
|
@docker push vitalif/vitastor-csi:$(VERSION)
|