diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2019-05-13 11:29:47 +0200 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2019-05-13 11:29:47 +0200 |
commit | 6f153a0ac4d9361aa0f8ecf7d2ba30e16bddc274 (patch) | |
tree | 623814a65b61818122f64ebd3a860fef05669714 /lavalab-gen.py | |
parent | 4ae24270f6e8e853ca97cdd1f926da486a39a387 (diff) |
lava-slave: generate lavacli default identities
Diffstat (limited to 'lavalab-gen.py')
-rwxr-xr-x | lavalab-gen.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lavalab-gen.py b/lavalab-gen.py index 86d750f..e51b891 100755 --- a/lavalab-gen.py +++ b/lavalab-gen.py @@ -413,6 +413,9 @@ def main(): remote_proto = worker["remote_proto"] remote_uri = "%s://%s:%s@%s:%s/RPC2" % (remote_proto, remote_user, remote_token, remote_address, remote_rpc_port) dockcomp["services"][worker_name]["environment"]["LAVA_MASTER_URI"] = remote_uri + dockcomp["services"][worker_name]["environment"]["LAVA_MASTER_USER"] = remote_user + dockcomp["services"][worker_name]["environment"]["LAVA_MASTER_BASEURI"] = "%s://%s:%s/RPC2" % (remote_proto, remote_address, remote_rpc_port) + dockcomp["services"][worker_name]["environment"]["LAVA_MASTER_TOKEN"] = remote_token if "lava-coordinator" in worker and worker["lava-coordinator"]: fcoordinator = open("%s/lava-coordinator/lava-coordinator.cnf" % workerdir, 'w') |