-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
1 changed file
with
6 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ USAGE: | |
bolt-agent [global options] command [command options] [arguments...] | ||
VERSION: | ||
v0.2.0 | ||
v0.2.2 | ||
COMMANDS: | ||
help, h Shows a list of commands or help for one command | ||
|
@@ -143,14 +143,14 @@ Script will execute same steps that you can invoke manually: | |
* fetch latest revision from https://github.com/bolt-observer/agent/releases | ||
|
||
``` | ||
wget https://github.com/bolt-observer/agent/releases/download/v0.2.0/bolt-agent-v0.2.0-linux.zip https://github.com/bolt-observer/agent/releases/download/v0.2.0/manifest-v0.2.0.txt.asc https://github.com/bolt-observer/agent/releases/download/v0.2.0/manifest-v0.2.0.txt | ||
wget https://github.com/bolt-observer/agent/releases/download/v0.2.2/bolt-agent-v0.2.2-linux.zip https://github.com/bolt-observer/agent/releases/download/v0.2.2/manifest-v0.2.2.txt.asc https://github.com/bolt-observer/agent/releases/download/v0.2.2/manifest-v0.2.2.txt | ||
``` | ||
|
||
* verify integrity | ||
|
||
``` | ||
wget -qO- https://raw.githubusercontent.com/bolt-observer/agent/main/scripts/keys/developers.asc | gpg --import | ||
gpg --verify manifest-v0.2.0.txt.asc manifest-v0.2.0.txt | ||
gpg --verify manifest-v0.2.2.txt.asc manifest-v0.2.2.txt | ||
``` | ||
|
||
and you should see: | ||
|
@@ -169,13 +169,13 @@ gpg: Good signature from "bolt <[email protected]>" [ultimate] | |
* unpack the compressed binary | ||
|
||
``` | ||
unzip bolt-agent-v0.2.0-linux.zip | ||
unzip bolt-agent-v0.2.2-linux.zip | ||
``` | ||
|
||
* copy the binary to a common place | ||
|
||
``` | ||
cp bolt-agent-v0.2.0-linux /usr/local/bin/bolt-agent | ||
cp bolt-agent-v0.2.2-linux /usr/local/bin/bolt-agent | ||
``` | ||
|
||
* start the binary | ||
|
@@ -204,7 +204,7 @@ You can use the docker image from GitHub: | |
Usage: | ||
|
||
``` | ||
docker run -v /tmp:/tmp -e API_KEY=changeme ghcr.io/bolt-observer/agent:v0.2.0 | ||
docker run -v /tmp:/tmp -e API_KEY=changeme ghcr.io/bolt-observer/agent:v0.2.2 | ||
``` | ||
|
||
## Filtering on agent side | ||
|