first commit

This commit is contained in:
2025-03-01 13:03:18 +01:00
commit d89f971175
9 changed files with 775 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
.DEFAULT_GOAL := all
# seems superfluous
#.PHONY: fmt vet build clean
fmt:
go fmt ./...
vet: fmt
go vet ./...
test: build
go test -v -count=1 ${TESTFLAGS} ./...
bench: build
go test -bench=. ./...
build: vet
mkdir -p bin
go build -o bin ./cmd/...
clean:
rm -rf bin
all: build
images:
docker compose build
helminstall: images
helm upgrade --install dns helm/dns
push: images
docker compose --profile build push