Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemarsden committed Nov 15, 2023
1 parent 49c0aa6 commit da6d0dd
Showing 1 changed file with 8 additions and 24 deletions.
32 changes: 8 additions & 24 deletions docs/upgrade-production.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,22 @@ journalctl -f -u solver
ssh node05.lukemarsden.net
```

github should have build the binary by now, go download the latest one from https://github.com/bacalhau-project/lilypad/releases

```
cd /app/lilypad
git checkout main
git pull
go build
sudo mv lilypad /usr/bin/lilypad
## CHANGE THE HASH BELOW TO THE LATEST FROM RELEASES PAGE!!
wget https://github.com/bacalhau-project/lilypad/releases/download/v2.0.0-f70e4e1/lilypad-linux-amd64
chmod +x lilypad-linux-amd64
sudo mv lilypad-linux-amd64 /usr/bin/lilypad
sudo systemctl restart resource-provider-gpu
```

```
journalctl -f -u resource-provider-gpu
```


## if the smart contract has changed:

we have to wipe out the whole world and start from scratch (for now)
Expand Down Expand Up @@ -81,24 +84,5 @@ sudo systemctl start mediator # not used currently
journalctl -f -u solver
```

### gpu node(s)

```
ssh node05.lukemarsden.net
```

github should have build the binary by now, go download the latest one from https://github.com/bacalhau-project/lilypad/releases

```
cd /app/lilypad
## CHANGE THE HASH BELOW TO THE LATEST FROM RELEASES PAGE!!
wget https://github.com/bacalhau-project/lilypad/releases/download/v2.0.0-f70e4e1/lilypad-linux-amd64
chmod +x lilypad-linux-amd64
sudo mv lilypad-linux-amd64 /usr/bin/lilypad
sudo systemctl restart resource-provider-gpu
```

```
journalctl -f -u resource-provider-gpu
```
now follow instructions to upgrade gpu node above

0 comments on commit da6d0dd

Please sign in to comment.