Skip to content

Commit

Permalink
Merge pull request #112 from ssvlabs/main
Browse files Browse the repository at this point in the history
main 2 unstable
  • Loading branch information
MatusKysel committed Sep 2, 2024
2 parents e9a6439 + 62ef8b3 commit ace61ed
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .k8/production/ssv-dkg/ssv-node-dkg-deployment-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
memory: REPLACE_NODES_MEM_LIMIT
ports:
- containerPort: 3030
command: ["/bin/ssv-dkg", "start-operator", "--configPath=/data/config/config.yaml", "--privKeyPassword=/data/password", "--privKey=/data/encrypted_private_key_op1.json"]
command: ["/entry-point.sh", "start-operator", "--configPath=/data/config/config.yaml", "--privKeyPassword=/data/password", "--privKey=/data/encrypted_private_key_op1.json"]
volumeMounts:
- name: secrets-file
mountPath: "/data/encrypted_private_key_op1.json"
Expand Down
2 changes: 1 addition & 1 deletion .k8/production/ssv-dkg/ssv-node-dkg-deployment-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
memory: REPLACE_NODES_MEM_LIMIT
ports:
- containerPort: 3030
command: ["/bin/ssv-dkg", "start-operator", "--configPath=/data/config/config.yaml", "--privKeyPassword=/data/password", "--privKey=/data/encrypted_private_key_op2.json"]
command: ["/entry-point.sh", "start-operator", "--configPath=/data/config/config.yaml", "--privKeyPassword=/data/password", "--privKey=/data/encrypted_private_key_op2.json"]
volumeMounts:
- name: secrets-file
mountPath: "/data/encrypted_private_key_op2.json"
Expand Down
2 changes: 1 addition & 1 deletion .k8/production/ssv-dkg/ssv-node-dkg-deployment-3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
memory: REPLACE_NODES_MEM_LIMIT
ports:
- containerPort: 3030
command: ["/bin/ssv-dkg", "start-operator", "--configPath=/data/config/config.yaml", "--privKeyPassword=/data/password", "--privKey=/data/encrypted_private_key_op3.json"]
command: ["/entry-point.sh", "start-operator", "--configPath=/data/config/config.yaml", "--privKeyPassword=/data/password", "--privKey=/data/encrypted_private_key_op3.json"]
volumeMounts:
- name: secrets-file
mountPath: "/data/encrypted_private_key_op3.json"
Expand Down
2 changes: 1 addition & 1 deletion .k8/production/ssv-dkg/ssv-node-dkg-deployment-4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
memory: REPLACE_NODES_MEM_LIMIT
ports:
- containerPort: 3030
command: ["/bin/ssv-dkg", "start-operator", "--configPath=/data/config/config.yaml", "--privKeyPassword=/data/password", "--privKey=/data/encrypted_private_key_op4.json"]
command: ["/entry-point.sh", "start-operator", "--configPath=/data/config/config.yaml", "--privKeyPassword=/data/password", "--privKey=/data/encrypted_private_key_op4.json"]
volumeMounts:
- name: secrets-file
mountPath: "/data/encrypted_private_key_op4.json"
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- [dial tcp timeout](#dial-tcp-timeout)
- [invalid URI for request](#invalid-uri-for-request)
- [connection refused](#connection-refused)
- [https issues](#https-issues)
- [`Please provide either operator info string or path`](#please-provide-either-operator-info-string-or-path)
- [Operator Quick start](#operator-quick-start)
- [Pre requisites](#pre-requisites)
Expand Down Expand Up @@ -307,6 +308,15 @@ You could manually verify the `operators_info.json` or the initiator command-gen
When this error appears, it means that the `ssv-dkg` tool cannot connect to one of the selected operators, and the reason could be because their `ssv-dkg` operator node has shut down.
This could be temporary, as they will likely start the node again, but if it persists, we recommend changing one of the operators.

#### https issues

```sh
2024-04-03T12:54:57.939402Z FATAL dkg-initiator 😥 Failed to load operators: {"error": "only HTTPS scheme is allowed at operator address http://116.202.218.95:3061, got: http"}
```

When this error appears at initiator, it means that the `ssv-dkg` tool cannot load operator URLs because it is not `https`. Only `https` is allowed.


#### `Please provide either operator info string or path`

```sh
Expand Down
Binary file added audits/SlowMist Audit Report.pdf
Binary file not shown.

0 comments on commit ace61ed

Please sign in to comment.