-
Notifications
You must be signed in to change notification settings - Fork 0
/
parity-deploy.sh
executable file
·358 lines (264 loc) · 7.53 KB
/
parity-deploy.sh
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#!/bin/bash
# Copyright 2017 Parity Technologies (UK) Ltd.
CHAIN_NAME="parity"
CHAIN_NODES="1"
CLIENT="0"
DOCKER_INCLUDE="include/docker-compose.yml"
help() {
echo "parity-deploy.sh OPTIONS
Usage:
REQUIRED:
--config dev / aura / tendermint / validatorset / input.json / custom_chain.toml
OPTIONAL:
--name name_of_chain. Default: parity
--nodes number_of_nodes (if using aura / tendermint) Default: 2
--ethstats - Enable ethstats monitoring of authority nodes. Default: Off
--expose - Expose a specific container on ports 8180 / 8545 / 30303. Default: Config specific
NOTE:
input.json - Custom spec files can be inserted by specifiying the path to the json file.
custom_chain.toml - Custom toml file defining multiple nodes. See customchain/config/example.toml for an example.
"
}
check_packages() {
if [ $(grep -i debian /etc/*-release | wc -l) -gt 0 ]; then
if [ ! -f /usr/bin/docker ]; then
sudo apt-get -y install docker.io python-pip
fi
if [ ! -f /usr/local/bin/docker-compose ]; then
sudo pip install docker-compose
fi
fi
}
genpw() {
openssl rand -base64 12
}
create_node_params() {
local DEST_DIR=deployment/$1
if [ ! -d $DEST_DIR ]; then
mkdir -p $DEST_DIR
fi
if [ ! -f $DEST_DIR/password ]; then
echo '' >$DEST_DIR/password
fi
./config/utils/keygen.sh $DEST_DIR
local SPEC_FILE=$(mktemp -p $DEST_DIR spec.XXXXXXXXX)
sed "s/CHAIN_NAME/$CHAIN_NAME/g" config/spec/example.spec >$SPEC_FILE
parity --chain $SPEC_FILE --keys-path $DEST_DIR/ account new --password $DEST_DIR/password >$DEST_DIR/address.txt
rm $SPEC_FILE
echo "NETWORK_NAME=$CHAIN_NAME" >.env
}
create_reserved_peers_poa() {
PUB_KEY=$(cat deployment/$1/key.pub)
echo "enode://$PUB_KEY@host$1:30303" >>deployment/chain/reserved_peers
}
create_reserved_peers_instantseal() {
PUB_KEY=$(cat deployment/$1/key.pub)
echo "enode://[email protected]:30303" >>deployment/chain/reserved_peers
}
build_spec() {
display_header
display_name
display_engine
display_params
display_genesis
display_accounts
display_footer
}
build_docker_config_poa() {
echo "version: '2.0'" >docker-compose.yml
echo "services:" >>docker-compose.yml
for x in $(seq 1 $CHAIN_NODES); do
cat config/docker/authority.yml | sed -e "s/NODE_NAME/$x/g" | sed -e "s@-d /home/parity/data@-d /home/parity/data $PARITY_OPTIONS@g" >>docker-compose.yml
mkdir -p data/$x
done
build_docker_config_ethstats
cat $DOCKER_INCLUDE >>docker-compose.yml
chown -R $USER data/
}
build_docker_config_ethstats() {
if [ "$ETHSTATS" == "1" ]; then
cat include/ethstats.yml >>docker-compose.yml
fi
}
build_docker_config_instantseal() {
cat config/docker/instantseal.yml | sed -e "s@-d /home/parity/data@-d /home/parity/data $PARITY_OPTIONS@g" >docker-compose.yml
build_docker_config_ethstats
cat $DOCKER_INCLUDE >>docker-compose.yml
mkdir -p data/is_authority
chown -R $USER data/
}
build_docker_client() {
if [ "$CLIENT" == "1" ]; then
create_node_params client
cp config/spec/client.toml deployment/client/
cat config/docker/client.yml >>docker-compose.yml
# writing client dependencies
if [ "$CHAIN_NODES" -gt "0" ]; then
echo " depends_on:" >>docker-compose.yml
for x in $(seq 1 $CHAIN_NODES); do
echo " - \"host${x}\"" >>docker-compose.yml
done
fi
fi
}
build_custom_chain() {
if [ -z "$CUSTOM_CHAIN" ]; then
echo "Must specify argument for custom chain option."
exit 1
fi
./customchain/generate.py "$CUSTOM_CHAIN"
exit 0
}
display_header() {
cat config/spec/chain_header
}
display_footer() {
cat config/spec/chain_footer
}
display_name() {
cat config/spec/name | sed -e "s/CHAIN_NAME/$CHAIN_NAME/g"
}
create_node_config_poa() {
ENGINE_SIGNER=$(cat deployment/$1/address.txt)
cat config/spec/authority_round.toml | sed -e "s/ENGINE_SIGNER/$ENGINE_SIGNER/g" >deployment/$1/authority.toml
}
create_node_config_instantseal() {
ENGINE_SIGNER=$(cat deployment/$1/address.txt)
cat config/spec/instant_seal.toml | sed -e "s/ENGINE_SIGNER/$ENGINE_SIGNER/g" >deployment/$1/authority.toml
}
expose_container() {
sed -i "s@container_name: $1@&\n ports:\n - 8080:8080\n - 8180:8180\n - 8545:8545\n - 8546:8546\n - 30303:30303@g" docker-compose.yml
}
select_exposed_container() {
if [ -n "$EXPOSE_CLIENT" ]; then
expose_container $EXPOSE_CLIENT
else
if [ "$CLIENT" == "0" ]; then
expose_container host1
fi
fi
}
display_engine() {
case $CHAIN_ENGINE in
dev)
cat config/spec/engine/instantseal
;;
aura | validatorset | tendermint)
for x in $(seq 1 $CHAIN_NODES); do
VALIDATOR=$(cat deployment/$x/address.txt)
RESERVED_PEERS="$RESERVED_PEERS $VALIDATOR"
VALIDATORS="$VALIDATORS \"$VALIDATOR\","
done
# Remove trailing , from validator list
VALIDATORS=$(echo $VALIDATORS | sed 's/\(.*\),.*/\1/')
cat config/spec/engine/$CHAIN_ENGINE | sed -e "s/0x0000000000000000000000000000000000000000/$VALIDATORS/g"
;;
*)
echo "Unknown engine: $CHAIN_ENGINE"
;;
esac
}
display_params() {
cat config/spec/params/$CHAIN_ENGINE
}
display_genesis() {
cat config/spec/genesis/$CHAIN_ENGINE
}
display_accounts() {
cat config/spec/accounts/$CHAIN_ENGINE
}
ARGS="$@"
while [ "$1" != "" ]; do
case $1 in
--name)
shift
CHAIN_NAME=$1
;;
-c | --config)
shift
CHAIN_ENGINE=$1
;;
-n | --nodes)
shift
CHAIN_NODES=$1
;;
-r | --release)
shift
PARITY_RELEASE=$1
;;
-e | --ethstats)
ETHSTATS=1
;;
--enable-client)
CLIENT=1
;;
--expose)
shift
EXPOSE_CLIENT="$1"
;;
--chain)
shift
CHAIN_NETWORK=$1
;;
-h | --help)
help
exit
;;
*) PARITY_OPTIONS="$PARITY_OPTIONS $1 " ;;
esac
shift
done
if [ -z "$CHAIN_ENGINE" ] && [ -z "$CHAIN_NETWORK" ]; then
echo "No chain argument, exiting..."
exit 1
fi
# Get a copy of the parity binary, overwriting if release is set
if [ ! -f /usr/bin/parity ] || [ -n "$PARITY_RELEASE" ]; then
if [ -z "$PARITY_RELEASE" ]; then
echo "NO custom parity build set, downloading stable"
bash <(curl https://get.parity.io -Lk -r stable)
else
echo "Custom parity build set: $PARITY_RELEASE"
curl -o parity-download.sh https://get.parity.io -Lk
bash parity-download.sh -r $PARITY_RELEASE
fi
fi
mkdir -p deployment/chain
check_packages
echo $CHAIN_ENGINE | grep -q toml
if [ $? -eq 0 ]; then
./customchain/generate.py "$CHAIN_ENGINE"
exit 0
fi
if [ ! -z "$CHAIN_NETWORK" ]; then
if [ ! -z "$PARITY_OPTIONS" ]; then
cat config/docker/chain.yml | sed -e "s/CHAIN_NAME/$CHAIN_NETWORK/g" | sed -e "s@-d /home/parity/data@-d /home/parity/data $PARITY_OPTIONS@g" >docker-compose.yml
else
cat config/docker/chain.yml | sed -e "s/CHAIN_NAME/$CHAIN_NETWORK/g" >docker-compose.yml
fi
elif [ "$CHAIN_ENGINE" == "dev" ]; then
echo "using instantseal"
create_node_params is_authority
create_reserved_peers_instantseal is_authority
create_node_config_instantseal is_authority
build_docker_config_instantseal
elif [ "$CHAIN_ENGINE" == "aura" ] || [ "$CHAIN_ENGINE" == "validatorset" ] || [ "$CHAIN_ENGINE" == "tendermint" ] || [ -f "$CHAIN_ENGINE" ]; then
if [ $CHAIN_NODES ]; then
for x in $(seq $CHAIN_NODES); do
create_node_params $x
create_reserved_peers_poa $x
create_node_config_poa $x
done
build_docker_config_poa
build_docker_client
fi
if [ "$CHAIN_ENGINE" == "aura" ] || [ "$CHAIN_ENGINE" == "validatorset" ] || [ "$CHAIN_ENGINE" == "tendermint" ]; then
build_spec >deployment/chain/spec.json
else
mkdir -p deployment/chain
cp $CHAIN_ENGINE deployment/chain/spec.json
fi
else
echo "Could not find spec file: $CHAIN_ENGINE"
fi
select_exposed_container