-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Mariano A. Nicolini <[email protected]>
- Loading branch information
1 parent
468fed9
commit 403b363
Showing
6 changed files
with
63 additions
and
5 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
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
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Upgrading to v0.10.0 | ||
|
||
This guide will walk you through the process of upgrading your Aligned Operator to v0.10.0. | ||
|
||
## Changes | ||
|
||
### New Features | ||
|
||
* feat(telemetry): Add url data to operator updates on telemetry service in [#1136](https://github.com/yetanotherco/aligned_layer/pull/1136) | ||
* fix: add panic catch on operator calling FFI in [#1196](https://github.com/yetanotherco/aligned_layer/pull/1196) | ||
|
||
|
||
## How to upgrade | ||
|
||
### Step 1 - Update the configuration for your specific Operator | ||
|
||
This version requires update the operator configuration file changing the following field: | ||
|
||
```yaml | ||
## Operator Configurations | ||
operator: | ||
operator_tracker_ip_port_address: https://holesky.telemetry.alignedlayer.com | ||
``` | ||
{% hint style="info" %} | ||
Previous URL of operator_tracker_ip_port_address. Now it sends data to a telemetry server with better tracking and error handling | ||
{% endhint %} | ||
### Step 2 - Update the Operator | ||
Inside the Aligned repository, run: | ||
```bash | ||
make update_operator | ||
``` | ||
|
||
This will recompile the binaries. You can then proceed to restart the operator. | ||
|
||
### Step 3 - Check the Operator Version | ||
|
||
To see the operator version, run: | ||
|
||
```bash | ||
./operator/build/aligned-operator --version | ||
``` | ||
|
||
This will display the current version of the operator binary. | ||
|
||
``` | ||
Aligned Layer Node Operator version v0.10.0 | ||
``` | ||
|
||
### Step 4 - Restart the Operator | ||
|
||
Restart the operator based on your system config |