-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhosts.toml
47 lines (37 loc) · 899 Bytes
/
hosts.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[network]
gateway = "10.152.41.254"
wireguard_net_prefix = "10.0.2."
dns = "9.9.9.9"
[snakemake]
# these are purely meant for helper functions used in
# the snakefile itself. Use the conda snakemake integration
# for all other situations
python_deps = ["pandas"]
[access]
# name of the user used for ssh login and computation
main_user = "gu53rab2"
# local login only
root_pw = "insecure_default"
# one ssh public key per array item
sshkeys = [
"ecdsa-sha2-nistp521 AA... user@blub"
]
[[hosts]]
# there must be a single host called master
name = "master"
# master can optionally be a worker too
worker = true
static_ip = "10.152.41.80"
[[hosts]]
# all other hosts can be named arbitrarily
name = "worker1"
worker = true
static_ip = "10.152.41.81"
[[hosts]]
name = "worker2"
worker = true
static_ip = "10.152.41.82"
[[hosts]]
name = "worker3"
worker = true
static_ip ="10.152.41.83"