diff --git a/.k8/production/ssv-dkg/ssv-node-dkg-deployment-1.yml b/.k8/production/ssv-dkg/ssv-node-dkg-deployment-1.yml index 311ac927..d7e28b18 100644 --- a/.k8/production/ssv-dkg/ssv-node-dkg-deployment-1.yml +++ b/.k8/production/ssv-dkg/ssv-node-dkg-deployment-1.yml @@ -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" diff --git a/.k8/production/ssv-dkg/ssv-node-dkg-deployment-2.yml b/.k8/production/ssv-dkg/ssv-node-dkg-deployment-2.yml index 195a71b7..14be10b1 100644 --- a/.k8/production/ssv-dkg/ssv-node-dkg-deployment-2.yml +++ b/.k8/production/ssv-dkg/ssv-node-dkg-deployment-2.yml @@ -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" diff --git a/.k8/production/ssv-dkg/ssv-node-dkg-deployment-3.yml b/.k8/production/ssv-dkg/ssv-node-dkg-deployment-3.yml index 4375e803..4c0c65c8 100644 --- a/.k8/production/ssv-dkg/ssv-node-dkg-deployment-3.yml +++ b/.k8/production/ssv-dkg/ssv-node-dkg-deployment-3.yml @@ -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" diff --git a/.k8/production/ssv-dkg/ssv-node-dkg-deployment-4.yml b/.k8/production/ssv-dkg/ssv-node-dkg-deployment-4.yml index b1b30655..40953bf5 100644 --- a/.k8/production/ssv-dkg/ssv-node-dkg-deployment-4.yml +++ b/.k8/production/ssv-dkg/ssv-node-dkg-deployment-4.yml @@ -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" diff --git a/README.md b/README.md index ba126ed1..4c25e1e5 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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 diff --git a/audits/SlowMist Audit Report.pdf b/audits/SlowMist Audit Report.pdf new file mode 100644 index 00000000..c8fcb098 Binary files /dev/null and b/audits/SlowMist Audit Report.pdf differ