-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup-wizard.yml
90 lines (83 loc) · 2.58 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
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
version: "2"
fields:
- id: keyper_name
title: Choose your Keyper Name
description: |
The Keyper Name is an identifier for your Keyper in the Shutter network.
target:
type: environment
name: KEYPER_NAME
service: [shutter, metrics]
required: true
- id: private_key
title: Input your Keyper Private Key
description: |
This private key must correspond to one of the addresses defined as a Keyper in the Shutter network.
target:
type: environment
name: SHUTTER_API_NODE_PRIVATEKEY
service: shutter
required: false
secret: true
- id: external_ws_rpc
title: External WS RPC
description: |
A websocket connection to an external ethereum RPC (e.g. 'wss://some.external.url' or 'ws://1.2.3.4:8545'). If this is given, shutter will use this RPC to connect to the network. If not, shutter will try to use an RPC service on this dappnode.
target:
type: environment
name: ETHEREUM_WS
service: shutter
required: false
- id: enable_push_logs
title: Enable Push Logs
description: |
Enable the push logs feature to send logs to an external server controlled by Shutter.
target:
type: environment
name: SHUTTER_PUSH_LOGS_ENABLED
service: [shutter, metrics]
enum:
- "true"
- "false"
- id: enable_push_metrics
title: Enable Push Metrics
description: |
Enable the push metrics feature to send metrics to an external server controlled by Shutter.
target:
type: environment
name: SHUTTER_PUSH_METRICS_ENABLED
service: [shutter, metrics]
enum:
- "true"
- "false"
- id: pushgateway_url
title: Pushgateway URL
description: |
The URL of the Pushgateway server to send metrics/logs to.
target:
type: environment
name: PUSHGATEWAY_URL
service: metrics
required: false
if: { enable_push_metrics: { "enum": ["true"] } }
- id: pushgateway_username
title: Pushgateway Username
description: |
The username to authenticate with the Pushgateway server.
target:
type: environment
name: PUSHGATEWAY_USERNAME
service: [metrics, shutter]
required: false
if: { enable_push_metrics: { "enum": ["true"] } }
- id: pushgateway_password
title: Pushgateway Password
description: |
The password to authenticate with the Pushgateway server.
target:
type: environment
name: PUSHGATEWAY_PASSWORD
service: [metrics, shutter]
required: false
secret: true
if: { enable_push_metrics: { "enum": ["true"] } }