Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f308b66

Browse files
author
Jake Thomas
authored
Hello, Buz (silverton-io#385)
Rename things to Buz. ### Wtf?! Why?! Answer: try telling a CISO they should implement a system called `honeypot`.
1 parent 97e2304 commit f308b66

204 files changed

Lines changed: 467 additions & 3739 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish Honeypot image to ghcr.io
1+
name: Publish Buz image to ghcr.io
22

33
on:
44
push:
@@ -32,7 +32,7 @@ jobs:
3232
uses: 'google-github-actions/auth@v0'
3333
with:
3434
token_format: 'access_token'
35-
workload_identity_provider: 'projects/860234713891/locations/global/workloadIdentityPools/honeypot/providers/github'
35+
workload_identity_provider: 'projects/860234713891/locations/global/workloadIdentityPools/buz/providers/github'
3636
service_account: '[email protected]'
3737

3838
- name: Configure Docker

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ jobs:
7171
goarch: ${{ matrix.goarch }}
7272
build_command: make
7373
release_tag: ${{ steps.get-version.outputs.content }}
74-
binary_name: honeypot
74+
binary_name: buz
7575
extra_files: LICENSE .VERSION

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ config.yml
33
scratch/*
44
testprofile.out
55
# File sink
6-
honeypot-valid.json
7-
honeypot-invalid.json
6+
buz-valid.json
7+
buz-invalid.json
88
notes/*
99
*.sql
1010
examples/quickstart/minio/*
1111
*.bin
1212
*.meta
13+
buz

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"yaml.schemas": {
3-
"http://registry.silverton.io/io.silverton/honeypot/internal/config/app/v1.0.json": "/*conf*.yml"
4-
// "./schemas/io.silverton/honeypot/internal/config/app/v1.0.json": "/*conf*.yml"
3+
"http://registry.silverton.io/io.silverton/buz/internal/config/app/v1.0.json": "/*conf*.yml"
4+
// "./schemas/io.silverton/buz/internal/config/app/v1.0.json": "/*conf*.yml"
55
}
66
}

Makefile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,29 @@
22
S=silverton
33
REGISTRY:=us-east1-docker.pkg.dev/silverton-io/docker
44
VERSION:=$(shell cat .VERSION)
5-
HONEYPOT_DIR=./cmd/honeypot/*.go
5+
BUZ_DIR=./cmd/buz/*.go
66
TEST_PROFILE=testprofile.out
77

88
build:
9-
go build -ldflags="-X main.VERSION=$(VERSION)" -o honeypot $(HONEYPOT_DIR)
9+
go build -ldflags="-X main.VERSION=$(VERSION)" -o buz $(BUZ_DIR)
1010

11-
run: ## Run honeypot locally
12-
go run -ldflags="-X 'main.VERSION=x.x.dev'" $(HONEYPOT_DIR)
11+
run: ## Run buz locally
12+
go run -ldflags="-X 'main.VERSION=x.x.dev'" $(BUZ_DIR)
1313

1414
bootstrap: ## Bootstrap development environment
15-
curl https://raw.githubusercontent.com/silverton-io/honeypot/main/examples/devel/honeypot/simple.conf.yml -o config.yml;
15+
curl https://raw.githubusercontent.com/silverton-io/buz/main/examples/devel/buz/simple.conf.yml -o config.yml;
1616
make run
1717

1818
bootstrap-destinations: ## Bootstrap various containerized database/stream systems
1919
docker-compose -f examples/devel/docker-compose.yml up -d
2020

21-
build-docker: ## Build local honeypot image
22-
docker build -f deploy/Dockerfile -t honeypot:$(VERSION) .
21+
build-docker: ## Build local buz image
22+
docker build -f deploy/Dockerfile -t buz:$(VERSION) .
2323

24-
buildx-deploy: ## Build multi-platform honeypot image and push it to edge repo
24+
buildx-deploy: ## Build multi-platform buz image and push it to edge repo
2525
docker buildx create --name $(S) || true;
2626
docker buildx use $(S)
27-
docker buildx build --platform linux/arm64,linux/amd64 -f deploy/Dockerfile -t $(REGISTRY)/honeypot:$(VERSION)-edge . --push
27+
docker buildx build --platform linux/arm64,linux/amd64 -f deploy/Dockerfile -t $(REGISTRY)/buz:$(VERSION)-edge . --push
2828

2929
test-cover-pkg: ## Run tests against pkg, output test profile, and open profile in browser
3030
go test ./pkg/... -v -coverprofile=$(TEST_PROFILE) || true

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
# Honeypot
1+
# Buz
22

33
![agplv3](https://img.shields.io/badge/license-AGPLv3-brightgreen)
4-
![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/silverton-io/honeypot)
4+
![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/silverton-io/buz)
55

66
![honey](img/buzz.png)
77

88
# Event Collection, Validation, and Delivery.
99

10-
Honeypot is a system for collecting events from various sources, validating data quality, and delivering them to where they need to bee.
10+
Buz is a system for collecting events from various sources, validating data quality, and delivering them to where they need to bee.
1111

1212

1313
# Quickstart
1414

15-
Quickstart documentation for setting up an end-to-end streaming analytics stack with Honeypot, Redpanda, Materialize, and Kowl can [be found here](https://honeypot.silverton.io/examples/quickstart).
15+
Quickstart documentation for setting up an end-to-end streaming analytics stack with Buz, Redpanda, Materialize, and Kowl can [be found here](https://buz.dev/examples/quickstart).
1616

1717

1818
# Documentation
1919

20-
Documentation can [be found here](https://honeypot.silverton.io/).
20+
Documentation can [be found here](https://buz.dev).

0 commit comments

Comments
 (0)