- Fix vitastor-cli rm/rm-data broken in 0.8.6 (missing messenger initialization) - Prepare OSD read handler for upcoming version with scrub - allow "secondary reads" to return errors - Fix OSDs re-peering PGs infinitely with a big number of PGs (reproduced in test_add_osd) - Fix another variant of flusher sync-waiting stall (reproduced in test_write) - Fix other tests in tests/ (will add them to Gitea CI soon) - Add patches for QEMU 6.2-8.0 - Fix QEMU driver compatibility with QEMU 8.0 - Build packages for RHEL 9 clones (based on AlmaLinux 9)
10 lines
153 B
Makefile
10 lines
153 B
Makefile
VERSION ?= v0.8.8
|
|
|
|
all: build push
|
|
|
|
build:
|
|
@docker build --rm -t vitalif/vitastor-csi:$(VERSION) .
|
|
|
|
push:
|
|
@docker push vitalif/vitastor-csi:$(VERSION)
|