diff options
author | Kevin Hilman <khilman@baylibre.com> | 2020-09-04 16:09:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 16:09:05 -0700 |
commit | ea5ae2e3cc03560683b019d9bcf78657dec35138 (patch) | |
tree | 2fb0d01b5a5ace52d1a180c94284842880de5548 /README.md | |
parent | 9b1a827ac2eecb9f251881f2092305baace99c45 (diff) | |
parent | 0b86dcfa7ca3bc1342d1379a29a91f30f861fee2 (diff) |
Merge pull request #127 from montjoie/misc-09-2020
Misc 09 2020
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -23,6 +23,8 @@ The following packages are necessary on the host machine: * docker-compose * pyyaml +If you plan to use docker/fastboot tests, you will need probably also to install lava-dispatcher-host. + ## Quickstart Example to use lava-docker with only one QEMU device: @@ -410,6 +412,31 @@ For running all images, simply run: docker-compose up -d ``` +### Enabling ZMQ encryption +Enabling ZMQ is all or nothing. +You need to generate keys for both master AND workers. +Generate thoses keys via: +``` +zmqauth/zmq_auth_gen/create_certificate.py --directory . nameofyourworker +``` +This will produce two files: +* A public key ending with ".key" +* A private key ending with ".key_secret" + +Since ZMQ keys does not store any information like name, filename could be different between master and workers. + +As general note, LAVA will use the hostname (and so the name in the master/worker node) for finding ZMQ keys. + +#### Naming convention for master +ZMQ key for master should be named according to the name used in master node. +ZMQ key for worker should be named according to the name in the worker node +lava-docker will automaticly copy master zmq_auth_key/zmq_auth_key_secret to name.key/name.key_secret + +#### Naming convention for workers +ZMQ public key for master should be named according to the remote_address used in worker node. +ZMQ key for worker should be named according to the name in the worker node +lava-docker will automaticly copy master zmq_auth_master_key to remote_address.key + ## Proxy cache (Work in progress) A squid docker is provided for caching all LAVA downloads (image, dtb, rootfs, etc...)<br/> For the moment, it is unsupported and unbuilded. |