2021-03-04 02:31:29 +00:00
|
|
|
.PHONY: gen-cert build-weather build-poller gen-cert dev-dependencies cert-info cert-info-remote curl-test clean get-root-ca
|
2021-03-11 01:59:21 +00:00
|
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
|
|
|
|
GOARCH=amd64
|
|
|
|
# GOARCH=arm
|
|
|
|
GOOS=linux
|
|
|
|
# GOOS=darwin
|
|
|
|
LDFLAGS=-w -s -d
|
|
|
|
GOBUILDFLAGS=
|
|
|
|
DOCKER_BUILDKIT=1
|
|
|
|
CGO_ENABLED=0
|
2021-02-25 01:02:43 +00:00
|
|
|
|
2021-03-04 02:31:29 +00:00
|
|
|
build: build-poller build-weather
|
2021-03-01 00:40:33 +00:00
|
|
|
|
2021-03-11 01:59:21 +00:00
|
|
|
build-weather: dependencies
|
|
|
|
@echo "build for os $$GOOS and arch $$GOARCH"
|
|
|
|
go build -o bin/weather-$(GOOS)-$(GOARCH) cmd/weather/main.go
|
2021-03-01 00:40:33 +00:00
|
|
|
|
2021-03-11 01:59:21 +00:00
|
|
|
build-poller: dependencies
|
|
|
|
@echo "build for os $$GOOS and arch $$GOARCH"
|
|
|
|
go build -o bin/poller-$(GOOS)-$(GOARCH) -ldflags="$(LDFLAGS)" $(GOBUILDFLAGS) cmd/poller/main.go
|
2021-03-04 02:31:29 +00:00
|
|
|
|
2021-02-25 01:02:43 +00:00
|
|
|
gen-cert:
|
|
|
|
cfssl gencert -config certs/client-config.json -profile server -hostname weather.localdomain certs/client-csr.json | cfssljson -bare certs/out/weather
|
|
|
|
|
2021-03-11 01:59:21 +00:00
|
|
|
dependencies:
|
|
|
|
go mod download
|
|
|
|
go mod verify
|
|
|
|
|
2021-03-04 02:31:29 +00:00
|
|
|
dev-dependencies:
|
2021-02-25 01:02:43 +00:00
|
|
|
go get github.com/cloudflare/cfssl/cmd/cfssl
|
|
|
|
go get github.com/cloudflare/cfssl/cmd/cfssljson
|
|
|
|
go get github.com/cloudflare/cfssl/cmd/mkbundle
|
2021-03-01 00:40:33 +00:00
|
|
|
|
|
|
|
cert-info:
|
|
|
|
cfssl certinfo -cert certs/out/weather.pem
|
|
|
|
|
|
|
|
cert-info-remote:
|
|
|
|
cfssl certinfo -domain weather.localdomain:8080
|
|
|
|
|
|
|
|
curl-test:
|
|
|
|
curl --cacert certs/out/ca.pem https://weather.localdomain:8080
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf bin/*
|
|
|
|
|
|
|
|
get-root-ca:
|
|
|
|
cfssl info -remote rasp1.localdomain:444 -config certs/client-config.json | cfssljson -bare -stdout /dev/stdout | tee certs/out/ca.pem
|
2021-03-11 01:59:21 +00:00
|
|
|
|
2021-03-12 00:28:49 +00:00
|
|
|
docker: docker-build docker-push
|
|
|
|
|
2021-03-11 01:59:21 +00:00
|
|
|
docker-build:
|
2021-03-12 00:28:49 +00:00
|
|
|
docker build -t docker.registry:5000/weather .
|
|
|
|
|
|
|
|
docker-push:
|
|
|
|
docker push docker.registry:5000/weather
|