forked from kyma-incubator/reconciler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
111 lines (87 loc) · 3.26 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
APP_NAME = reconciler
IMG_REPO := $(DOCKER_PUSH_REPOSITORY)$(DOCKER_PUSH_DIRECTORY)
IMG_NAME := $(IMG_REPO)/$(APP_NAME)
TAG := $(DOCKER_TAG)
COMPONENTS := $(shell (go run scripts/reconcilernames.go))
ifndef VERSION
VERSION = ${shell git describe --tags --always}
endif
ifeq ($(VERSION),stable)
VERSION = stable-${shell git rev-parse --short HEAD}
endif
.DEFAULT_GOAL=all
FLAGS = -ldflags '-s -w'
.PHONY: resolve
resolve:
go mod tidy
.PHONY: lint
lint:
./scripts/lint.sh
.PHONY: build
build: build-linux build-darwin build-linux-arm
.PHONY: build-linux
build-linux:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ./bin/reconciler-linux $(FLAGS) ./cmd/reconciler
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ./bin/mothership-linux $(FLAGS) ./cmd/mothership
.PHONY: build-linux-arm
build-linux-arm:
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o ./bin/reconciler-arm $(FLAGS) ./cmd/reconciler
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o ./bin/mothership-arm $(FLAGS) ./cmd/mothership
.PHONY: build-darwin
build-darwin:
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o ./bin/reconciler-darwin $(FLAGS) ./cmd/reconciler
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o ./bin/mothership-darwin $(FLAGS) ./cmd/mothership
.PHONY: docker-build
docker-build:
docker build -t $(APP_NAME)/mothership:latest -f Dockerfile.mr .
docker build -t $(APP_NAME)/component:latest -f Dockerfile.cr .
.PHONY: docker-push
docker-push:
ifdef IMG_REPO
docker tag $(APP_NAME)/mothership $(IMG_NAME)/mothership:$(TAG)
docker tag $(APP_NAME)/component $(IMG_NAME)/component:$(TAG)
docker push $(IMG_NAME)/mothership:$(TAG)
docker push $(IMG_NAME)/component:$(TAG)
endif
.PHONY: bump-primage
bump-primage:
./scripts/bumpimage.sh
.PHONY: deploy
deploy:
@./scripts/kcversion.sh
kubectl create namespace reconciler --dry-run=client -o yaml | kubectl apply -f -
helm template reconciler --namespace reconciler --set "global.components={$(COMPONENTS)}" ./resources/reconciler > reconciler.yaml
kubectl apply -f reconciler.yaml
rm reconciler.yaml
.PHONY: test
test:
go test -race -timeout 15m -coverprofile=cover.out ./...
@echo "Total test coverage: $$(go tool cover -func=cover.out | grep total | awk '{print $$3}')"
@rm cover.out
.PHONY: test-all
test-all: export RECONCILER_INTEGRATION_TESTS = 1
test-all: test
.PHONY: clean
clean:
rm -rf bin
export OAPI_VALIDATOR=spectral
export OAPI_VALIDATOR_OPS=lint --ruleset ./openapi/.spectral.json --display-only-failures
.PHONY: validate-oapi-spec
validate-oapi-spec:
$(OAPI_VALIDATOR) $(OAPI_VALIDATOR_OPS) ./openapi/external_api.yaml
$(OAPI_VALIDATOR) $(OAPI_VALIDATOR_OPS) ./openapi/internal_api.yaml
export OAPI_GENERATOR=oapi-codegen
export OAPI_GENERATOR_OPTS=-generate 'types,skip-prune'
.PHONY: generate-oapi-models
generate-oapi-models:
$(OAPI_GENERATOR) $(OAPI_GENERATOR_OPTS) -o ./pkg/keb/model_gen.go -package keb ./openapi/external_api.yaml
$(OAPI_GENERATOR) $(OAPI_GENERATOR_OPTS) -o ./pkg/reconciler/model_gen.go -package reconciler ./openapi/internal_api.yaml
.PHONY: oapi
oapi: validate-oapi-spec generate-oapi-models
@./scripts/git-check.sh
.PHONY: all
all: resolve oapi lint build test docker-build docker-push
.PHONY: release
release: all
.PHONY: verify
verify: resolve validate-oapi-spec generate-oapi-models lint build-linux test