- Fix a possible "double free" bug in the client library happening on OSD restart - Fix a possible write hang on PG history update when only epoch is changed - Fix incorrect systemd target "local.target" in mon/make-etcd - Allow "content" option in PVE storage plugin to allow to enable containers - Build client library without tcmalloc which fixes "attempt to free invalid pointer" errors when, for example, trying to run QEMU with both Vitastor and Ceph RBD disks
10 lines
153 B
Makefile
10 lines
153 B
Makefile
VERSION ?= v0.8.5
|
|
|
|
all: build push
|
|
|
|
build:
|
|
@docker build --rm -t vitalif/vitastor-csi:$(VERSION) .
|
|
|
|
push:
|
|
@docker push vitalif/vitastor-csi:$(VERSION)
|