forked from kubevirt/hyperconverged-cluster-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
138 lines (104 loc) · 3.39 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
QUAY_USERNAME ?=
QUAY_PASSWORD ?=
SOURCE_DIRS = cmd pkg
SOURCES := $(shell find . -name '*.go' -not -path "*/vendor/*")
SHA := $(shell git describe --no-match --always --abbrev=40 --dirty)
IMAGE_REGISTRY ?= quay.io
IMAGE_TAG ?= latest
OPERATOR_IMAGE ?= kubevirt/hyperconverged-cluster-operator
REGISTRY_NAMESPACE ?=
# Prow doesn't have docker command
DO=./hack/in-docker.sh
ifeq (, $(shell which docker))
DO=eval
export JOB_TYPE=prow
endif
sanity:
go fmt ./...
go mod vendor
./hack/build-manifests.sh
git diff -G'^[^ createdAt: ]' --exit-code
build: $(SOURCES) ## Build binary from source
go build -i -ldflags="-s -w" -o _out/hyperconverged-cluster-operator ./cmd/hyperconverged-cluster-operator
go build -i -ldflags="-s -w" -o _out/csv-merger tools/csv-merger/csv-merger.go
install:
go install ./cmd/...
clean: ## Clean up the working environment
@rm -rf _out/
start:
./hack/deploy.sh
quay-token:
@./tools/token.sh $(QUAY_USERNAME) $(QUAY_PASSWORD)
bundle-push: container-build-operator-courier
@QUAY_USERNAME=$(QUAY_USERNAME) QUAY_PASSWORD=$(QUAY_PASSWORD) ./tools/operator-courier/push.sh
hack-clean: ## Run ./hack/clean.sh
./hack/clean.sh
container-build: container-build-operator container-build-operator-courier
container-build-operator:
docker build -f build/Dockerfile -t $(IMAGE_REGISTRY)/$(OPERATOR_IMAGE):$(IMAGE_TAG) --build-arg git_sha=$(SHA) .
container-build-operator-courier:
docker build -f tools/operator-courier/Dockerfile -t hco-courier .
container-push: container-push-operator
container-push-operator:
docker push $(IMAGE_REGISTRY)/$(OPERATOR_IMAGE):$(IMAGE_TAG)
cluster-up:
./cluster-up/up.sh
cluster-down:
./cluster-up/down.sh
cluster-sync:
./cluster-up/sync.sh
cluster-clean:
CMD="./cluster-up/kubectl.sh" ./hack/clean.sh
ci-functest: build-functest test-functional
functest: build-functest test-functional-prow
build-functest:
${DO} ./hack/build-tests.sh
test-functional:
JOB_TYPE="stdci" ./hack/run-tests.sh
test-functional-prow:
./hack/run-tests.sh
stageRegistry:
@APP_REGISTRY_NAMESPACE=redhat-operators-stage PACKAGE=kubevirt-hyperconverged ./tools/quay-registry.sh $(QUAY_USERNAME) $(QUAY_PASSWORD)
bundleRegistry:
REGISTRY_NAMESPACE=$(REGISTRY_NAMESPACE) IMAGE_REGISTRY=$(IMAGE_REGISTRY) ./hack/build-registry-bundle.sh
container-clusterserviceversion:
REGISTRY_NAMESPACE=$(REGISTRY_NAMESPACE) IMAGE_REGISTRY=$(IMAGE_REGISTRY) ./hack/upgrade-test-clusterserviceversion.sh
build-push-all: container-build-operator container-push-operator container-build-operator-courier bundle-push
upgrade-test:
./hack/upgrade-test.sh
dump-state:
./hack/dump-state.sh
help: ## Show this help screen
@echo 'Usage: make <OPTIONS> ... <TARGETS>'
@echo ''
@echo 'Available targets are:'
@echo ''
@grep -E '^[ a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
@echo ''
test-unit:
JOB_TYPE="travis" ./hack/build-tests.sh
test: test-unit
.PHONY: start \
clean \
build \
help \
hack-clean \
container-build \
container-build-operator \
container-push \
container-push-operator \
container-build-operator-courier \
cluster-up \
cluster-down \
cluster-sync \
cluster-clean \
stageRegistry \
functest \
quay-token \
bundle-push \
build-push-all \
ci-functest \
build-functest \
test-functional \
test-functional-prow \