forked from crossplane/crossplane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
210 lines (168 loc) · 8.97 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
# ====================================================================================
# Setup Project
PROJECT_NAME := crossplane
PROJECT_REPO := github.com/crossplane/$(PROJECT_NAME)
PLATFORMS ?= linux_amd64 linux_arm64
# -include will silently skip missing files, which allows us
# to load those files with a target in the Makefile. If only
# "include" was used, the make command would fail and refuse
# to run a target until the include commands succeeded.
-include build/makelib/common.mk
# ====================================================================================
# Setup Output
S3_BUCKET ?= crossplane.releases
-include build/makelib/output.mk
# ====================================================================================
# Setup Go
# Set a sane default so that the nprocs calculation below is less noisy on the initial
# loading of this file
NPROCS ?= 1
# each of our test suites starts a kube-apiserver and running many test suites in
# parallel can lead to high CPU utilization. by default we reduce the parallelism
# to half the number of CPU cores.
GO_TEST_PARALLEL := $(shell echo $$(( $(NPROCS) / 2 )))
GO_STATIC_PACKAGES = $(GO_PROJECT)/cmd/crossplane
GO_LDFLAGS += -X $(GO_PROJECT)/pkg/version.Version=$(VERSION)
GO_SUBDIRS += cmd pkg apis
GO111MODULE = on
-include build/makelib/golang.mk
# ====================================================================================
# Setup Helm
HELM_BASE_URL = https://charts.crossplane.io
HELM_S3_BUCKET = crossplane.charts
HELM_CHARTS = crossplane crossplane-types crossplane-controllers
HELM_CHART_LINT_ARGS_crossplane = --set nameOverride='',imagePullSecrets=''
-include build/makelib/helm.mk
# ====================================================================================
# Setup Kubernetes tools
-include build/makelib/k8s_tools.mk
# ====================================================================================
# Setup Images
# Due to the way that the shared build logic works, images should
# all be in folders at the same level (no additional levels of nesting).
DOCKER_REGISTRY = crossplane
IMAGES = crossplane
-include build/makelib/image.mk
# ====================================================================================
# Setup Docs
SOURCE_DOCS_DIR = docs
DEST_DOCS_DIR = docs
DOCS_GIT_REPO = https://$(GIT_API_TOKEN)@github.com/crossplane/crossplane.github.io.git
-include build/makelib/docs.mk
# ====================================================================================
# Targets
# run `make help` to see the targets and options
# We want submodules to be set up the first time `make` is run.
# We manage the build/ folder and its Makefiles as a submodule.
# The first time `make` is run, the includes of build/*.mk files will
# all fail, and this target will be run. The next time, the default as defined
# by the includes will be run instead.
fallthrough: submodules
@echo Initial setup complete. Running make again . . .
@make
manifests:
@$(WARN) Deprecated. Please run make generate instead.
generate: $(KUSTOMIZE) go.generate manifests.prepare manifests.annotate
CROSSPLANE_TYPES_CHART_DIR = cluster/charts/crossplane-types
CROSSPLANE_CONTROLLERS_CHART_DIR = cluster/charts/crossplane-controllers
CROSSPLANE_CHART_DIR = cluster/charts/crossplane
CRD_DIR = $(CROSSPLANE_TYPES_CHART_DIR)/crds
CROSSPLANE_CHART_HELM2_CRD_DIR = $(CROSSPLANE_CHART_DIR)/templates/crds
CROSSPLANE_CHART_HELM3_CRD_DIR = $(CROSSPLANE_CHART_DIR)/crds
TYPE_MANIFESTS = $(wildcard $(CROSSPLANE_TYPES_CHART_DIR)/templates/*.yaml)
CONTROLLER_MANIFESTS = $(filter-out $(wildcard $(CROSSPLANE_CONTROLLERS_CHART_DIR)/templates/stack-manager-host-*.yaml), $(wildcard $(CROSSPLANE_CONTROLLERS_CHART_DIR)/templates/*.yaml))
# This target copies manifests in crossplane-controllers and crossplane-types chart into crossplane chart.
manifests.prepare:
@$(INFO) Copying CRD manifests to Crossplane chart
rm -r $(CROSSPLANE_CHART_HELM2_CRD_DIR)
mkdir $(CROSSPLANE_CHART_HELM2_CRD_DIR)
cp $(CRD_DIR)/* $(CROSSPLANE_CHART_HELM2_CRD_DIR)
@$(OK) Copied CRD manifests to Crossplane chart
@$(INFO) Copying controller manifests to Crossplane chart
cp $(CONTROLLER_MANIFESTS) $(CROSSPLANE_CHART_DIR)/templates
@$(OK) Copied controller manifests to Crossplane chart
@$(INFO) Copying type manifests to Crossplane chart
cp $(TYPE_MANIFESTS) $(CROSSPLANE_CHART_DIR)/templates
@$(OK) Copied type manifests to Crossplane chart
# Add "helm.sh/hook: crd-install" and "helm.sh/hook-delete-policy:
# before-hook-creation" annotations for clusterstackinstalls and stackinstalls
# CRDs. Since Crossplane helm chart contains both CRD and ClusterStackInstall
# CRs, helm fails to install both together. One option was to use
# `post-install,post-update` hooks in CR to deploy it after CRDs are installed,
# but this didn't work reliably with "helm upgrade --install" command. Using
# "crd-install" hook is already suggested in helm best practices doc:
# https://helm.sh/docs/chart_best_practices/#method-2-crd-install-hooks and we
# verified that it works reliably for all use cases. The other hook for deletion
# policy is necessary to be able to redeploy helm chart after it is deleted
# since CRDs with "crd-install" hooks will not be deleted with "helm delete" and
# cause next "helm install" to fail.
# "helm.sh/hook: crd-install" was deprecated in helm3 and CRDs with this annotation are
# skipped. This results in the StackInstall and ClusterStackInstall CRDs not being
# installed in helm3 when they have that annotation.
# As a workaround, we first copy those CRDs under <chart>/crds directory which
# was introduced with helm3 and ignored in helm2, then afterwards apply the annotation to
# those CRDs under <chart>/templates/crds for helm2.
manifests.annotate:
@$(INFO) Copying StackInstall CRD manifests for helm3 compatibility
rm -r $(CROSSPLANE_CHART_HELM3_CRD_DIR)
mkdir -p $(CROSSPLANE_CHART_HELM3_CRD_DIR)
cp $(CRD_DIR)/stacks.crossplane.io_stackinstalls.yaml $(CROSSPLANE_CHART_HELM3_CRD_DIR)/stacks.crossplane.io_stackinstalls.yaml
cp $(CRD_DIR)/stacks.crossplane.io_clusterstackinstalls.yaml $(CROSSPLANE_CHART_HELM3_CRD_DIR)/stacks.crossplane.io_clusterstackinstalls.yaml
@$(OK) Copied StackInstall CRD manifests for helm3 compatibility
@$(INFO) Annotating generated StackInstall CRD manifests
$(eval TMPDIR := $(shell mktemp -d))
$(KUSTOMIZE) build cluster/charts -o $(TMPDIR)
mv $(TMPDIR)/apiextensions.k8s.io_v1beta1_customresourcedefinition_clusterstackinstalls.stacks.crossplane.io.yaml $(CROSSPLANE_CHART_HELM2_CRD_DIR)/stacks.crossplane.io_clusterstackinstalls.yaml
mv $(TMPDIR)/apiextensions.k8s.io_v1beta1_customresourcedefinition_stackinstalls.stacks.crossplane.io.yaml $(CROSSPLANE_CHART_HELM2_CRD_DIR)/stacks.crossplane.io_stackinstalls.yaml
@$(OK) Annotated generated StackInstall CRD manifests
sed '1,6d' $(SOURCE_DOCS_DIR)/1_install.md > $(CROSSPLANE_CHART_DIR)/README.md
@$(OK) Copied and modified chart README.md from Crossplane docs
# Generate a coverage report for cobertura applying exclusions on
# - generated file
cobertura:
@cat $(GO_TEST_OUTPUT)/coverage.txt | \
grep -v zz_generated.deepcopy | \
$(GOCOVER_COBERTURA) > $(GO_TEST_OUTPUT)/cobertura-coverage.xml
# Ensure a PR is ready for review.
reviewable: generate lint
@go mod tidy
# Ensure branch is clean.
check-diff: reviewable
@$(INFO) checking that branch is clean
@git diff --quiet || $(FAIL)
@$(OK) branch is clean
# integration tests
e2e.run: test-integration
# Run integration tests.
test-integration: $(KIND) $(KUBECTL) $(HELM)
@$(INFO) running integration tests using kind $(KIND_VERSION)
@$(ROOT_DIR)/cluster/local/integration_tests.sh || $(FAIL)
@$(OK) integration tests passed
# Update the submodules, such as the common build scripts.
submodules:
@git submodule sync
@git submodule update --init --recursive
# This is for running out-of-cluster locally, and is for convenience. Running
# this make target will print out the command which was used. For more control,
# try running the binary directly with different arguments.
run: go.build
@$(INFO) Running Crossplane locally out-of-cluster . . .
@# To see other arguments that can be provided, run the command with --help instead
$(GO_OUT_DIR)/$(PROJECT_NAME) --debug
.PHONY: manifests cobertura reviewable submodules fallthrough test-integration run
# ====================================================================================
# Special Targets
define CROSSPLANE_MAKE_HELP
Crossplane Targets:
cobertura Generate a coverage report for cobertura applying exclusions on generated files.
reviewable Ensure a PR is ready for review.
submodules Update the submodules, such as the common build scripts.
run Run crossplane locally, out-of-cluster. Useful for development.
endef
# The reason CROSSPLANE_MAKE_HELP is used instead of CROSSPLANE_HELP is because the crossplane
# binary will try to use CROSSPLANE_HELP if it is set, and this is for something different.
export CROSSPLANE_MAKE_HELP
crossplane.help:
@echo "$$CROSSPLANE_MAKE_HELP"
help-special: crossplane.help
.PHONY: crossplane.help help-special