-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
293d7bf
commit ffc94e8
Showing
4 changed files
with
159 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.2.2 | ||
2.2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
This guide provides step-by-step instructions for the release 2.2.3. | ||
|
||
Previous Release: 2.2.2 | ||
|
||
<br /> | ||
|
||
--- | ||
|
||
- [Validator](#validators) | ||
- [Rollout Process](#validator-rollout-process) | ||
- [Rollback Process](#validator-rollback-process) | ||
- [Miner](#miner) | ||
- [Rollout Process](#miner-rollout-process) | ||
- [Rollback Process](#miner-rollback-process) | ||
- [Additional Resources](#additional-resources) | ||
- [Troubleshooting](#troubleshooting) | ||
|
||
--- | ||
|
||
<br /> | ||
|
||
# Validator | ||
|
||
## Rollout Process <a id="validator-rollout-process"></a> | ||
|
||
1. **Upgrade Subnet**: Fetch the remote tags | ||
```bash | ||
git fetch --tags --force | ||
``` | ||
|
||
Then, checkout the new release tag | ||
```bash | ||
git checkout tags/v2.2.3 | ||
``` | ||
|
||
Finally, install the dependencies | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
pip install -e . | ||
``` | ||
|
||
2. **Restart validator**: Restart your validator to take the new version | ||
|
||
```bash | ||
pm2 restart validator-7 | ||
``` | ||
|
||
3. **Check logs**: Check the validator logs to see if you see some `New Block` | ||
```bash | ||
pm2 logs validator-7 | ||
``` | ||
|
||
<br /> | ||
|
||
## Rollback Process <a id="validator-rollback-process"></a> | ||
|
||
If any issues arise during or after the rollout, follow these steps to perform a rollback: | ||
|
||
1. **Downgrade Subnet**: Checkout the previous release tag | ||
```bash | ||
git checkout tags/v2.2.2 | ||
``` | ||
|
||
Then, install the dependencies | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
pip install -e . | ||
``` | ||
|
||
2. **Restart validator**: Restart your validator to take the new version | ||
|
||
```bash | ||
pm2 restart validator-7 | ||
``` | ||
|
||
3. **Check logs**: Check the validator logs to see if you see some `New Block` | ||
```bash | ||
pm2 logs validator-7 | ||
``` | ||
|
||
<br /> | ||
|
||
# Miner | ||
|
||
## Rollout Process <a id="miner-rollout-process"></a> | ||
|
||
1. **Upgrade Subnet**: Fetch the remote tags | ||
```bash | ||
git fetch --tags --force | ||
``` | ||
|
||
Then, checkout the new release tag | ||
```bash | ||
git checkout tags/v2.2.3 | ||
``` | ||
|
||
Finally, install the dependencies | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
pip install -e . | ||
``` | ||
|
||
2. **Restart validator**: Restart your validator to take the new version | ||
|
||
```bash | ||
pm2 restart miner-7 | ||
``` | ||
|
||
3. **Check logs**: Check the validator logs to see if you see some `New Block` | ||
```bash | ||
pm2 logs miner-7 | ||
``` | ||
|
||
## Rollback Process <a id="miner-rollback-process"></a> | ||
|
||
1. **Downgrade Subnet**: Checkout the previous release tag | ||
```bash | ||
git checkout tags/v2.2.2 | ||
``` | ||
|
||
Then, install the dependencies | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
pip install -e . | ||
``` | ||
|
||
2. **Restart validator**: Restart your validator to take the new version | ||
|
||
```bash | ||
pm2 restart miner-7 | ||
``` | ||
|
||
3. **Check logs**: Check the validator logs to see if you see some `New Block` | ||
```bash | ||
pm2 logs miner-7 | ||
``` | ||
|
||
<br /> | ||
|
||
# Additional Resources | ||
|
||
For any further assistance or inquiries, please contact [**SubVortex Team**](https://discord.com/channels/799672011265015819/1215311984799653918) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters