-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup-wizard.yml
52 lines (49 loc) · 1.49 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
version: "2"
fields:
- id: setup-mode
title: Setup mode
description: |-
If this is the first install or just a simple update, choose "New operator / Update" option and continue with the installation. If you want to import an existing operator, choose "Import key" and fulfill the inputs below.
enum:
- "New Operator / Update"
- "Import Operator"
target:
type: environment
name: SETUP_MODE
service: operator
required: false
- id: builder-proposals
target:
type: environment
name: BUILDER_PROPOSALS
service: operator
title: Builder Proposals
description: |-
Whether to enable MEV block production. Requires the connected Beacon node to be MEV-enabled.
enum:
- "true"
- "false"
required: true
default: "false"
- id: encrypted-private-key
target:
type: fileUpload
path: /data/operator/config/encrypted_private_key.json
service: operator
title: Encrypted private key
description: |
Provide here the encrypted private key in JSON format.
pattern: "\\.json"
required: true
if: { "setup-mode": { "enum": ["Import Operator"] } }
- id: encrypted-private-key-pass
target:
type: environment
name: PRIVATE_KEY_PASS
service: operator
title: Encrypted private key password
secret: true
description: |
Provide here the encrypted private key password.
required: true
if: { "setup-mode": { "enum": ["Import Operator"] } }