-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup-wizard.yml
68 lines (63 loc) · 1.83 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
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_GNOSIS_NODE_PRIVATEKEY
service: shutter
required: false
secret: true
- 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 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
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
required: false
secret: true
if: { enable_push_metrics: { "enum": ["true"] } }