Skip to content

Commit

Permalink
Minor improvements to operator setup instructions (#111)
Browse files Browse the repository at this point in the history
* docs: Add container pull to operator setup final step

* docs: Improve register_operator_on_setup description
  • Loading branch information
Hyodar authored Apr 23, 2024
1 parent d4aeab6 commit b07613c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 5 additions & 2 deletions docs/docs/operator/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,10 @@ enable_metrics: true
node_api_ip_port_address: near-sffl-operator:9010
enable_node_api: true

# Whether to try and register the operator in the AVS and in EL on startup
# If set, it will not re-register the operator if already registered
# Whether to try and register the operator in the AVS and in EL on startup.
# It will not re-register the operator if already registered.
# If unset, the operator will not be registered on startup! You'll need to
# manually register the operator - not recommended
register_operator_on_startup: true

# RMQ address and indexer rollup IDs
Expand Down Expand Up @@ -207,6 +209,7 @@ This is the final step!
Stop the previous execution with `Ctrl+C`. Then, run the following:
```
source .env
docker compose --profile indexer --profile operator pull
docker compose --profile indexer --profile operator up
```

Expand Down
6 changes: 4 additions & 2 deletions setup/operator/config/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ enable_metrics: true
node_api_ip_port_address: 0.0.0.0:9010
enable_node_api: true

# Whether to try and register the operator in the AVS and in EL on startup
# If set, it will not re-register the operator if already registered
# Whether to try and register the operator in the AVS and in EL on startup.
# It will not re-register the operator if already registered.
# If unset, the operator will not be registered on startup! You'll need to
# manually register the operator - not recommended
register_operator_on_startup: true

# RMQ address and indexer rollup IDs
Expand Down

0 comments on commit b07613c

Please sign in to comment.