- Optimize WA - reduce it from 4-5 to 3.x by batching journal writes - Fix ls-pool showing wrong used % when osds are reweighted (#105) - Fix vitastor-cli rm sometimes hanging when PGs are down (#99) - Fix vitastor-cli ls displaying raw used space for all inodes when -p is specified (#101) - Fix "Cannot set property of undefined" in monitor when deleting pool with live inode op stats (#103) - Revert vitastor-kv change from 2.2.0 leading to crashes in vitastor-kv-stress (#100) - Add pg_size change check for XOR pools - Fix root access to VitastorFS files - Add IPv6 support to make-etcd - Fix IPv6 etcd address support in OSD & client library
10 lines
183 B
Makefile
10 lines
183 B
Makefile
VITASTOR_VERSION ?= v2.4.1
|
|
|
|
all: build push
|
|
|
|
build:
|
|
@docker build --no-cache --rm -t vitalif/vitastor:$(VITASTOR_VERSION) .
|
|
|
|
push:
|
|
@docker push vitalif/vitastor:$(VITASTOR_VERSION)
|