- OpenNebula support! [Installation instructions](https://git.yourcmc.ru/vitalif/vitastor/src/branch/master/docs/installation/opennebula.en.md) - Added [vitastor-cli rm --exact|--matching](https://git.yourcmc.ru/vitalif/vitastor/src/branch/master/docs/usage/cli.en.md#rm) command - Added [vitastor-cli dd](https://git.yourcmc.ru/vitalif/vitastor/src/branch/master/docs/usage/cli.en.md#dd) command - copy files between Vitastor images, files and pipes - Add a startup timeout to vitastor-cli to not wait for etcd infinitely - Fix non-working OSD_OP_READ_CHAIN_BITMAP O_o - Autodetect block_size/bitmap_granularity/immediate_commit when creating pools - Do not allow to create multiple pools with the same name from vitastor-cli - Fix skip_cache_check option not applied due to type issue (see github issue #70)
10 lines
180 B
Makefile
10 lines
180 B
Makefile
VITASTOR_VERSION ?= v1.9.0
|
|
|
|
all: build push
|
|
|
|
build:
|
|
@docker build --rm -t vitalif/vitastor-csi:$(VITASTOR_VERSION) .
|
|
|
|
push:
|
|
@docker push vitalif/vitastor-csi:$(VITASTOR_VERSION)
|