Skip to content

Commit

Permalink
Update register-stake-pool.md
Browse files Browse the repository at this point in the history
Added info about case when we need to configure multiple relays
  • Loading branch information
os11k committed May 29, 2023
1 parent 160c890 commit a2bd26e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/operate-a-stake-pool/register-stake-pool.md
Expand Up @@ -99,6 +99,31 @@ cardano-cli stake-pool registration-certificate \
--metadata-hash $(cat poolMetaDataHash.txt) \
--out-file pool.cert
```
:::important
In case you have multiple relays, please substitute the `single-host-pool-relay` line from above with the below code accordingly.

DNS based relays, 1 entry per DNS record
```
--single-host-pool-relay <relaynode1.yourpoolname.com> \
--pool-relay-port 6000 \
--single-host-pool-relay <relaynode2.yourpoolname.com> \
--pool-relay-port 6000 \
```

Round Robin DNS based relays, 1 entry per SRV DNS record
```
--multi-host-pool-relay <relaynodes.yourpoolname.com> \
--pool-relay-port 6000 \
```

IP based relays, 1 entry per IP address
```
--pool-relay-port 6000 \
--pool-relay-ipv4 <first relay node public IP> \
--pool-relay-port 6000 \
--pool-relay-ipv4 <second relay node public IP> \
```
:::

| Parameter | Explanation |
| :--- | :--- |
Expand Down

0 comments on commit a2bd26e

Please sign in to comment.