From d42030d39800b930634dba1efafcf43959c40205 Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Wed, 4 Jul 2018 14:45:58 +0200 Subject: Handle ZMQ auth This patch add support for using ZMQ auth. Basicly adding "zmq_auth: True" to a master is sufficient to enable it. Since "ZMQ certificates" are using a custom format (vs X509 classic), we need to use the custom generator. For helping with that a temporary docker is generated which handle generating thoses files. --- zmqauth/docker-compose.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 zmqauth/docker-compose.yml (limited to 'zmqauth/docker-compose.yml') diff --git a/zmqauth/docker-compose.yml b/zmqauth/docker-compose.yml new file mode 100644 index 0000000..a7147e1 --- /dev/null +++ b/zmqauth/docker-compose.yml @@ -0,0 +1,6 @@ +services: + master1: + build: {context: zmq_auth_gen } + hostname: zmqauth_builder + volumes: ['../output:/root/output'] +version: '2.0' -- cgit 1.2.3-korg