This is the pre-compiled version of https://github.com/martinrvisser/valkey-audit plugin.
80
You can find here:
the current version of the library (see the tag) for the specific Valkey Version. Built with ❤️ with Drone using the following Dockerfile:
FROM debian:trixie as builder-910
RUN apt update && apt install -y build-essential cmake xz-utils gcc curl
COPY valkey-audit /valkey-audit
WORKDIR /valkey-audit
RUN curl -s https://raw.githubusercontent.com/valkey-io/valkey/refs/tags/9.1.0/src/valkeymodule.h | tee src/valkeymodule.h >/dev/null
RUN mkdir build
RUN cmake -S . -B build
RUN cmake --build build --target all
FROM scratch
COPY --from=builder-910 /valkey-audit/build/libvalkeyaudit.so.1.0.0 /usr/lib/libvalkeyaudit-9.1.0.so
and you can mount it using the Kubernetes ImageVolume feature with a vanilla Valkey image, adding this library as mountpoint.
Content type
Image
Digest
sha256:4f95653c7…
Size
56.2 kB
Last updated
4 months ago
docker pull angeloxx/valkey-audit:v1.0.0-rc1