- Implement `vitastor-cli status` (print cluster status) command - Add a new `make-osd-hybrid.js` script to quickly prepare a lot of hybrid (HDD+SSD) OSDs - Implement snapshot deletion for Cinder driver (only works in a healthy cluster) - Fix a huge :) bug causing reads to return all zeroes during rebalance. Add a test to prevent it in the future - Disconnect NBD proxy correctly without leaving a zombie [vitastor-nbd] process in D state - Fix a rare write hang appearing with small write throttling enabled
10 lines
154 B
Makefile
10 lines
154 B
Makefile
VERSION ?= v0.6.16
|
|
|
|
all: build push
|
|
|
|
build:
|
|
@docker build --rm -t vitalif/vitastor-csi:$(VERSION) .
|
|
|
|
push:
|
|
@docker push vitalif/vitastor-csi:$(VERSION)
|