Skip to content

Commit 146539f

Browse files
committed
Cosmetic: rename anza to agave, whitespace fixes
1 parent 9397b2e commit 146539f

File tree

10 files changed

+24
-24
lines changed

10 files changed

+24
-24
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ COPY --from=builder /snapshot-monitor /app/
2828
RUN mkdir -p /snapshots
2929

3030
# Set the entrypoint
31-
ENTRYPOINT ["/app/snapshot-monitor"] cngoh0sfd7unq8o7np40
31+
ENTRYPOINT ["/app/snapshot-monitor"] cngoh0sfd7unq8o7np40

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ A Golang application that monitors a directory for Solana snapshot files, proces
3737
### Building from Source
3838

3939
```bash
40-
git clone https://github.com/maestroi/anza-snapshot-uploader.git
41-
cd anza-snapshot-uploader
40+
git clone https://github.com/maestroi/agave-snapshot-uploader.git
41+
cd agave-snapshot-uploader
4242
go build -o snapshot-monitor ./cmd/snapshot-monitor
4343
```
4444

4545
### Using Pre-built Binaries
4646

47-
You can download pre-built binaries from the [Releases](https://github.com/maestroi/anza-snapshot-uploader/releases) page. Each release includes:
47+
You can download pre-built binaries from the [Releases](https://github.com/maestroi/agave-snapshot-uploader/releases) page. Each release includes:
4848

4949
- A Linux binary (`snapshot-monitor-linux-amd64`)
5050
- A deployment package (`snapshot-monitor-vX.Y.Z.tar.gz`) containing:
@@ -173,7 +173,7 @@ sudo systemctl start snapshot-monitor
173173
1. Pull the Docker image:
174174

175175
```bash
176-
docker pull ghcr.io/maestroi/anza-snapshot-uploader:latest
176+
docker pull ghcr.io/maestroi/agave-snapshot-uploader:latest
177177
```
178178

179179
2. Run the container:
@@ -186,7 +186,7 @@ docker run -d \
186186
-e S3_BUCKET=solana-snapshots \
187187
-e S3_ACCESS_KEY=your-access-key \
188188
-e S3_SECRET_KEY=your-secret-key \
189-
ghcr.io/maestroi/anza-snapshot-uploader:latest
189+
ghcr.io/maestroi/agave-snapshot-uploader:latest
190190
```
191191

192192
### Running with Docker Compose
@@ -290,13 +290,13 @@ This project uses GitHub Actions for continuous integration and deployment:
290290
Docker images are available from the GitHub Container Registry:
291291

292292
```bash
293-
docker pull ghcr.io/maestroi/anza-snapshot-uploader:latest
293+
docker pull ghcr.io/maestroi/agave-snapshot-uploader:latest
294294
```
295295

296296
You can also use a specific version:
297297

298298
```bash
299-
docker pull ghcr.io/maestroi/anza-snapshot-uploader:v1.0.0
299+
docker pull ghcr.io/maestroi/agave-snapshot-uploader:v1.0.0
300300
```
301301

302302
## License

cmd/snapshot-monitor/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"os/signal"
99
"syscall"
1010

11-
"github.com/Blockdaemon/anza-snapshot-uploader/pkg/config"
12-
"github.com/Blockdaemon/anza-snapshot-uploader/pkg/monitor"
13-
"github.com/Blockdaemon/anza-snapshot-uploader/pkg/s3"
14-
"github.com/Blockdaemon/anza-snapshot-uploader/pkg/solana"
11+
"github.com/Blockdaemon/agave-snapshot-uploader/pkg/config"
12+
"github.com/Blockdaemon/agave-snapshot-uploader/pkg/monitor"
13+
"github.com/Blockdaemon/agave-snapshot-uploader/pkg/s3"
14+
"github.com/Blockdaemon/agave-snapshot-uploader/pkg/solana"
1515
)
1616

1717
func main() {

deployment/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ retention_period_hours: 168 # Delete snapshots older than 7 days
3030
log_level: "info"
3131

3232
# Hostname to identify this instance (optional, auto-detected if not specified)
33-
hostname: "node-1"
33+
hostname: "node-1"

deployment/docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
33
snapshot-monitor:
4-
image: ghcr.io/maestroi/anza-snapshot-uploader:latest
4+
image: ghcr.io/blockdaemon/agave-snapshot-uploader:latest
55
restart: always
66
environment:
77
WATCH_DIR: "/snapshots"
@@ -19,4 +19,4 @@ services:
1919
LOG_LEVEL: "info"
2020
HOSTNAME: "node-1"
2121
volumes:
22-
- /data/snapshots:/snapshots
22+
- /data/snapshots:/snapshots

deployment/systemd/snapshot-monitor.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ ENABLE_INCREMENTAL_SNAP=true
1111
ENABLE_RETENTION=true
1212
RETENTION_PERIOD_HOURS=168
1313
LOG_LEVEL=info
14-
HOSTNAME=node-1
14+
HOSTNAME=node-1

deployment/systemd/snapshot-monitor.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ User=snapshot
1010
EnvironmentFile=/etc/snapshot-monitor.env
1111

1212
[Install]
13-
WantedBy=multi-user.target
13+
WantedBy=multi-user.target

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/Blockdaemon/anza-snapshot-uploader
1+
module github.com/Blockdaemon/agave-snapshot-uploader
22

33
go 1.23.4
44

pkg/metadata/metadata.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"path/filepath"
88
"time"
99

10-
"github.com/Blockdaemon/anza-snapshot-uploader/pkg/snapshot"
10+
"github.com/Blockdaemon/agave-snapshot-uploader/pkg/snapshot"
1111
)
1212

1313
// UploadStatus represents the status of a snapshot upload

pkg/monitor/monitor.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ import (
1010
"sync"
1111
"time"
1212

13-
"github.com/Blockdaemon/anza-snapshot-uploader/pkg/config"
14-
"github.com/Blockdaemon/anza-snapshot-uploader/pkg/metadata"
15-
"github.com/Blockdaemon/anza-snapshot-uploader/pkg/s3"
16-
"github.com/Blockdaemon/anza-snapshot-uploader/pkg/snapshot"
17-
"github.com/Blockdaemon/anza-snapshot-uploader/pkg/solana"
13+
"github.com/Blockdaemon/agave-snapshot-uploader/pkg/config"
14+
"github.com/Blockdaemon/agave-snapshot-uploader/pkg/metadata"
15+
"github.com/Blockdaemon/agave-snapshot-uploader/pkg/s3"
16+
"github.com/Blockdaemon/agave-snapshot-uploader/pkg/snapshot"
17+
"github.com/Blockdaemon/agave-snapshot-uploader/pkg/solana"
1818
"github.com/fsnotify/fsnotify"
1919
)
2020

0 commit comments

Comments
 (0)