This repository has been archived by the owner on Jun 8, 2024. It is now read-only.
generated from dappnode/DAppNodePackage-besu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup-wizard.yml
64 lines (56 loc) · 2.09 KB
/
setup-wizard.yml
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
version: "2"
fields:
- title: Config mode
id: config_mode
description: >-
You must choose a config method. Most users should choose
"normal" mode, but more advanced users will be able to customize the
installation of Besu and its environment variables.
target:
type: environment
name: CONFIG_MODE
service: goerli-besu
enum:
- "normal"
- "advanced"
- title: Storage Format
id: storage_format
description: >-
Besu can use one of two storage formats, Forest of Tries or Bonsai Tries.
You can read about the differences [here](https://besu.hyperledger.org/public-networks/concepts/data-storage-formats).
Default and Reccomended storage format is BONSAI.
target:
type: environment
name: STORAGE_FORMAT
service: goerli-besu
enum:
- BONSAI
- FOREST
required: true
if: { "config_mode": { "enum": ["advanced"] } }
- title: Sync Mode
id: sync_mode
description: >-
Besu can use one of four sync modes, FULL (Slow, Full Archive Node, Not Reccomended), FAST (DEPRECATED, Legacy FAST, Full Node), X_SNAP (Legacy, Faster than FAST, Snap Sync, Full Node) or the Latest and Reccomended method, X_CHECKPOINT (Fastest, Latest, Official Reccomended Sync Mode by Hyperledger, Besu's Maintainers and the Dappnode Team).
You can read about the differences [here](https://besu.hyperledger.org/stable/public-networks/reference/cli/options#sync-mode).
Default and Reccomended Sync Mode is X_CHECKPOINT.
target:
type: environment
name: SYNC_MODE
service: goerli-besu
enum:
- X_CHECKPOINT
- X_SNAP
- FAST
- FULL
required: true
if: { "config_mode": { "enum": ["advanced"] } }
- title: Max HTTP RPC connections
id: max_rpc_connections_http
description: >-
To prevent flooding of the node, there is a sensible max connections limit. You can alter this variable here.
target:
type: environment
name: MAX_HTTP_CONNECTIONS
service: goerli-besu
if: { "config_mode": { "enum": ["advanced"] } }