forked from metal3-io/baremetal-operator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
239 lines (189 loc) · 7.83 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
RUN_NAMESPACE = metal3
GO_TEST_FLAGS = $(TEST_FLAGS)
DEBUG = --debug
COVER_PROFILE = cover.out
# CRD Generation Options
#
# trivialVersions=false means generate the CRD with multiple versions,
# eventually allowing conversion webhooks
# allowDangerousTypes=true lets use the float64 field for clock speeds
# crdVersions=v1 generates the v1 version of the CRD type
#
# NOTE: Assumes the default is preserveUnknownFields=false with
# crdVersions=v1, so that the API server discards "extra" data
# instead of storing it
#
#
BIN_DIR := bin
CRD_OPTIONS ?= "crd:trivialVersions=false,allowDangerousTypes=true,crdVersions=v1"
KUSTOMIZE = tools/bin/kustomize
CONTROLLER_GEN = tools/bin/controller-gen
# See pkg/version.go for details
SOURCE_GIT_COMMIT ?= $(shell git rev-parse --short HEAD)
BUILD_VERSION ?= $(shell git describe --always --abbrev=40 --dirty)
VERSION_URI = "github.com/metal3-io/baremetal-operator/pkg/version"
export LDFLAGS="-X $(VERSION_URI).Raw=${BUILD_VERSION} \
-X $(VERSION_URI).Commit=${SOURCE_GIT_COMMIT} \
-X $(VERSION_URI).BuildTime=$(shell date +%Y-%m-%dT%H:%M:%S%z)"
# Set some variables the operator expects to have in order to work
# Those need to be the same as in config/default/ironic.env
export OPERATOR_NAME=baremetal-operator
export DEPLOY_KERNEL_URL=http://172.22.0.1:6180/images/ironic-python-agent.kernel
export DEPLOY_RAMDISK_URL=http://172.22.0.1:6180/images/ironic-python-agent.initramfs
export IRONIC_ENDPOINT=http://localhost:6385/v1/
export IRONIC_INSPECTOR_ENDPOINT=http://localhost:5050/v1/
export GO111MODULE=on
export GOFLAGS=
.PHONY: help
help: ## Display this help
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
@echo
@echo "Variables:"
@echo " TEST_NAMESPACE -- project name to use ($(TEST_NAMESPACE))"
@echo " SETUP -- controls the --no-setup flag ($(SETUP))"
@echo " GO_TEST_FLAGS -- flags to pass to --go-test-flags ($(GO_TEST_FLAGS))"
@echo " DEBUG -- debug flag, if any ($(DEBUG))"
# Image URL to use all building/pushing image targets
IMG ?= baremetal-operator:latest
## --------------------------------------
## Test Targets
## --------------------------------------
# Run tests
.PHONY: test
test: generate lint manifests unit ## Run common developer tests
.PHONY: unit
unit: ## Run unit tests
go test ./... $(GO_TEST_FLAGS) -coverprofile $(COVER_PROFILE)
cd apis/ && go test ./... $(GO_TEST_FLAGS) -coverprofile $(COVER_PROFILE)
cd pkg/ironic && go test ./... $(GO_TEST_FLAGS) -coverprofile $(COVER_PROFILE)
.PHONY: unit-cover
unit-cover: ## Run unit tests with code coverage
go test -coverprofile=$(COVER_PROFILE) $(GO_TEST_FLAGS) ./...
go tool cover -func=$(COVER_PROFILE)
cd apis/ && go test -coverprofile=$(COVER_PROFILE) $(GO_TEST_FLAGS) ./...
cd apis/ && go tool cover -func=$(COVER_PROFILE)
cd pkg/ironic/ && go test -coverprofile=$(COVER_PROFILE) $(GO_TEST_FLAGS) ./...
cd pkg/ironic/ && go tool cover -func=$(COVER_PROFILE)
.PHONY: unit-verbose
unit-verbose: ## Run unit tests with verbose output
TEST_FLAGS=-v make unit
## --------------------------------------
## Linter Targets
## --------------------------------------
.PHONY: linters
linters: lint generate-check fmt-check
tools/bin/golangci-lint: hack/tools/go.mod
cd hack/tools; go build -o $(abspath $@) github.com/golangci/golangci-lint/cmd/golangci-lint
.PHONY: lint
lint: tools/bin/golangci-lint
$< run
.PHONY: manifest-lint
manifest-lint: ## Run manifest validation
./hack/manifestlint.sh
## --------------------------------------
## Build/Run Targets
## --------------------------------------
.PHONY: build
build: generate manifests manager tools ## Build everything
.PHONY: manager
manager: generate lint ## Build manager binary
go build -ldflags $(LDFLAGS) -o bin/$(OPERATOR_NAME) main.go
.PHONY: run
run: generate lint manifests ## Run against the configured Kubernetes cluster in ~/.kube/config
go run -ldflags $(LDFLAGS) ./main.go -namespace=$(RUN_NAMESPACE) -dev -webhook-port=0
.PHONY: demo
demo: generate lint manifests ## Run in demo mode
go run -ldflags $(LDFLAGS) ./main.go -namespace=$(RUN_NAMESPACE) -dev -demo-mode -webhook-port=0
.PHONY: run-test-mode
run-test-mode: generate fmt-check lint manifests ## Run against the configured Kubernetes cluster in ~/.kube/config
go run -ldflags $(LDFLAGS) ./main.go -namespace=$(RUN_NAMESPACE) -dev -test-mode -webhook-port=0
.PHONY: install
install: $(KUSTOMIZE) manifests ## Install CRDs into a cluster
$< build config/crd | kubectl apply -f -
.PHONY: uninstall
uninstall: $(KUSTOMIZE) manifests ## Uninstall CRDs from a cluster
$< build config/crd | kubectl delete -f -
.PHONY: deploy
deploy: $(KUSTOMIZE) manifests ## Deploy controller in the configured Kubernetes cluster in ~/.kube/config
cd config/manager && kustomize edit set image controller=${IMG}
$< build config/default | kubectl apply -f -
$(CONTROLLER_GEN): hack/tools/go.mod
cd hack/tools; go build -o $(abspath $@) sigs.k8s.io/controller-tools/cmd/controller-gen
$(KUSTOMIZE): hack/tools/go.mod
cd hack/tools; go build -o $(abspath $@) sigs.k8s.io/kustomize/kustomize/v3
.PHONY: manifests
manifests: manifests-generate manifests-kustomize ## Generate manifests e.g. CRD, RBAC etc.
.PHONY: manifests-generate
manifests-generate: $(CONTROLLER_GEN)
cd apis; $(abspath $<) $(CRD_OPTIONS) rbac:roleName=manager-role webhook paths="./..." output:webhook:dir=../config/webhook/ output:crd:artifacts:config=../config/crd/bases
$< rbac:roleName=manager-role paths="./..." output:rbac:artifacts:config=config/rbac
.PHONY: manifests-kustomize
manifests-kustomize: $(KUSTOMIZE)
$< build config/default > config/render/capm3.yaml
.PHONY: generate
generate: $(CONTROLLER_GEN) ## Generate code
cd apis; $(abspath $<) object:headerFile="../hack/boilerplate.go.txt" paths="./..."
$< object:headerFile="hack/boilerplate.go.txt" paths="./..."
## --------------------------------------
## Docker Targets
## --------------------------------------
.PHONY: docker
docker: generate manifests ## Build the docker image
docker build . -t ${IMG}
# Push the docker image
.PHONY: docker-push
docker-push:
docker push ${IMG}
## --------------------------------------
## CI Targets
## --------------------------------------
.PHONY: generate-check
generate-check:
./hack/generate.sh
.PHONY: generate-check-local
generate-check-local:
IS_CONTAINER=local ./hack/generate.sh
.PHONY: fmt-check
fmt-check: ## Run gofmt and report an error if any changes are made
./hack/gofmt.sh
.PHONY: fmt
fmt: ## Run gofmt and fix files with formatting issues
gofmt -s -w .
## --------------------------------------
## Documentation
## --------------------------------------
.PHONY: docs
docs: $(patsubst %.dot,%.png,$(wildcard docs/*.dot))
%.png: %.dot
dot -Tpng $< >$@
## --------------------------------------
## Tool apps
## --------------------------------------
.PHONY: tools
tools:
go build -o bin/get-hardware-details cmd/get-hardware-details/main.go
go build -o bin/make-bm-worker cmd/make-bm-worker/main.go
go build -o bin/make-virt-host cmd/make-virt-host/main.go
## --------------------------------------
## Tilt / Kind
## --------------------------------------
.PHONY: kind-create
kind-create: ## create bmo kind cluster if needed
./hack/kind_with_registry.sh
.PHONY: tilt-up
tilt-up: $(KUSTOMIZE) kind-create ## start tilt and build kind cluster if needed
tilt up
.PHONY: kind-reset
kind-reset: ## Destroys the "bmo" kind cluster.
kind delete cluster --name=bmo || true
## --------------------------------------
## Go module Targets
## --------------------------------------
.PHONY:
mod: ## Clean up go module settings
go mod tidy
go mod verify
cd apis; go mod tidy
cd apis; go mod verify
cd hack/tools; go mod tidy
cd hack/tools; go mod verify