-
Notifications
You must be signed in to change notification settings - Fork 716
/
Makefile
511 lines (398 loc) · 16 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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
# or more contributor license agreements. Licensed under the Elastic License;
# you may not use this file except in compliance with the Elastic License.
#################################
## -- Variables -- ##
#################################
# Read env files, ignores if they doesn't exist
-include .registry.env
-include .env
# make sure sub-commands don't use eg. fish shell
export SHELL := /bin/bash
KUBECTL_CLUSTER := $(shell kubectl config current-context 2> /dev/null)
# Default to debug logging
LOG_VERBOSITY ?= 1
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
GOBIN := $(or $(shell go env GOBIN 2>/dev/null), $(shell go env GOPATH 2>/dev/null)/bin)
# find or download controller-gen
controller-gen:
ifneq ($(shell controller-gen --version 2> /dev/null), Version: v0.2.5)
@(cd /tmp; GO111MODULE=on go get sigs.k8s.io/controller-tools/cmd/[email protected])
CONTROLLER_GEN=$(GOBIN)/controller-gen
else
CONTROLLER_GEN=$(shell which controller-gen)
endif
## -- Docker image
# for dev, suffix image name with current user name
IMG_SUFFIX ?= -$(subst _,,$(shell whoami))
REGISTRY ?= docker.elastic.co
REGISTRY_NAMESPACE ?= eck-dev
NAME ?= eck-operator
SNAPSHOT ?= true
VERSION ?= $(shell cat VERSION)
TAG ?= $(shell git rev-parse --short=8 --verify HEAD)
IMG_NAME ?= $(NAME)$(IMG_SUFFIX)
IMG_VERSION ?= $(VERSION)-$(TAG)
BASE_IMG := $(REGISTRY)/$(REGISTRY_NAMESPACE)/$(IMG_NAME)
OPERATOR_IMAGE ?= $(BASE_IMG):$(IMG_VERSION)
print-operator-image:
@ echo $(OPERATOR_IMAGE)
GO_LDFLAGS := -X github.com/elastic/cloud-on-k8s/pkg/about.version=$(VERSION) \
-X github.com/elastic/cloud-on-k8s/pkg/about.buildHash=$(TAG) \
-X github.com/elastic/cloud-on-k8s/pkg/about.buildDate=$(shell date -u +'%Y-%m-%dT%H:%M:%SZ') \
-X github.com/elastic/cloud-on-k8s/pkg/about.buildSnapshot=$(SNAPSHOT)
# options for 'go test'. for instance, set to "-race" to enable the race checker
TEST_OPTS ?=
## -- Namespaces
# namespace in which the operator is deployed (see config/operator)
OPERATOR_NAMESPACE ?= elastic-system
# name of the operator statefulset and related resources
OPERATOR_NAME ?= elastic-operator
# comma separated list of namespaces in which the operator should watch resources
MANAGED_NAMESPACES ?=
## -- Security
# should environments be configured with PSP ?
# TODO: only relevant on GKE for e2e tests for the moment
PSP ?= 0
#####################################
## -- Development -- ##
#####################################
all: dependencies lint check-license-header unit integration e2e-compile elastic-operator reattach-pv
## -- build
dependencies:
go mod tidy -v && go mod download
# Generate code, CRDs and documentation
ALL_CRDS=config/crds/all-crds.yaml
generate: tidy generate-crds generate-api-docs generate-notice-file
tidy:
go mod tidy
go-generate:
# we use this in pkg/controller/common/license
go generate -tags='$(GO_TAGS)' ./pkg/... ./cmd/...
generate-crds: go-generate controller-gen
$(CONTROLLER_GEN) webhook object:headerFile=./hack/boilerplate.go.txt paths=./pkg/apis/...
# Generate manifests e.g. CRD, RBAC etc.
$(CONTROLLER_GEN) crd paths="./pkg/apis/..." output:crd:artifacts:config=config/crds/bases
# apply patches to work around some CRD generation issues, and merge them into a single file
kubectl kustomize config/crds/patches > $(ALL_CRDS)
# generate an all-in-one version including the operator manifests
$(MAKE) --no-print-directory generate-all-in-one
generate-api-docs:
@hack/api-docs/build.sh
generate-notice-file:
@hack/licence-detector/generate-notice.sh
generate-image-dependencies:
@hack/licence-detector/generate-image-deps.sh
elastic-operator: generate
go build -mod=readonly -ldflags "$(GO_LDFLAGS)" -tags='$(GO_TAGS)' -o bin/elastic-operator github.com/elastic/cloud-on-k8s/cmd
clean:
rm -f pkg/controller/common/license/zz_generated.pubkey.go
reattach-pv:
# just check that reattach-pv still compiles
go build -o /dev/null hack/reattach-pv/main.go
## -- tests
unit: clean
go test ./pkg/... ./cmd/... -cover $(TEST_OPTS)
unit-xml: clean
gotestsum --junitfile unit-tests.xml -- -cover ./pkg/... ./cmd/... $(TEST_OPTS)
integration: GO_TAGS += integration
integration: clean generate-crds
go test -tags='$(GO_TAGS)' ./pkg/... ./cmd/... -cover $(TEST_OPTS)
integration-xml: GO_TAGS += integration
integration-xml: clean generate-crds
gotestsum --junitfile integration-tests.xml -- -tags='$(GO_TAGS)' -cover ./pkg/... ./cmd/... $(TEST_OPTS)
lint:
golangci-lint run
shellcheck:
shellcheck $(shell find . -type f -name "*.sh" -not -path "./vendor/*")
#############################
## -- Run -- ##
#############################
install-crds: generate-crds
kubectl apply -f $(ALL_CRDS)
# Install roles that operator expects to be present by default.
install-roles:
kubectl apply -f ./config/operator/all-in-one/beat-roles.yaml
# Run locally against the configured Kubernetes cluster, with port-forwarding enabled so that
# the operator can reach services running in the cluster through k8s port-forward feature
run: install-crds install-roles go-run
go-run:
# Run the operator locally with debug logs and operator image set to latest
AUTO_PORT_FORWARD=true \
go run \
-ldflags "$(GO_LDFLAGS)" \
-tags "$(GO_TAGS)" \
./cmd/main.go manager \
--development \
--log-verbosity=$(LOG_VERBOSITY) \
--ca-cert-validity=10h --ca-cert-rotate-before=1h \
--operator-namespace=default \
--namespaces=$(MANAGED_NAMESPACES) \
--manage-webhook-certs=false \
2>&1 | grep -v "dev-portforward" # remove dev-portforward logs from the output
go-debug:
@(cd cmd && AUTO_PORT_FORWARD=true dlv debug \
--build-flags="-ldflags '$(GO_LDFLAGS)'" \
-- \
manager \
--development \
--log-verbosity=$(LOG_VERBOSITY) \
--ca-cert-validity=10h \
--ca-cert-rotate-before=1h \
--operator-namespace=default \
--namespaces=$(MANAGED_NAMESPACES) \
--manage-webhook-certs=false)
build-operator-image:
@ docker pull $(OPERATOR_IMAGE) \
&& echo "OK: image $(OPERATOR_IMAGE) already published" \
|| $(MAKE) docker-build docker-push
# if the current k8s cluster is on GKE, GCLOUD_PROJECT must be set
check-gke:
ifneq ($(findstring gke_,$(KUBECTL_CLUSTER)),)
ifndef GCLOUD_PROJECT
$(error GCLOUD_PROJECT not set while GKE detected)
endif
endif
# Deploy the operator against the current k8s cluster
deploy: check-gke install-crds build-operator-image apply-operator
apply-operator:
OPERATOR_IMAGE=$(OPERATOR_IMAGE) \
OPERATOR_NAME=$(OPERATOR_NAME) \
NAMESPACE=$(OPERATOR_NAMESPACE) \
MANAGED_NAMESPACES=$(MANAGED_NAMESPACES) \
$(MAKE) --no-print-directory -sC config/operator generate-namespace | kubectl apply -f -
apply-psp:
kubectl apply -f config/dev/elastic-psp.yaml
ALL_IN_ONE_OUTPUT_FILE=config/all-in-one.yaml
# merge all-in-one crds with operator manifests
generate-all-in-one:
cp -f $(ALL_CRDS) $(ALL_IN_ONE_OUTPUT_FILE)
OPERATOR_IMAGE=$(OPERATOR_IMAGE) \
OPERATOR_NAME=$(OPERATOR_NAME) \
NAMESPACE=$(OPERATOR_NAMESPACE) \
$(MAKE) --no-print-directory -sC config/operator generate-all-in-one >> $(ALL_IN_ONE_OUTPUT_FILE)
# Deploy an all in one operator against the current k8s cluster
deploy-all-in-one: GO_TAGS ?= release
deploy-all-in-one: docker-build docker-push
kubectl apply -f $(ALL_IN_ONE_OUTPUT_FILE)
logs-operator:
@ kubectl --namespace=$(OPERATOR_NAMESPACE) logs -f statefulset.apps/$(OPERATOR_NAME)
samples:
@ echo "-> Pushing samples to Kubernetes cluster..."
@ kubectl apply -f config/samples/kibana/kibana_es.yaml
# Display elasticsearch credentials of the first stack
show-credentials:
@ echo "elastic:$$(kubectl get secret elasticsearch-sample-es-elastic-user -o json | jq -r '.data.elastic' | base64 -D)"
##########################################
## -- K8s clusters bootstrap -- ##
##########################################
cluster-bootstrap: install-crds
clean-k8s-cluster:
kubectl delete --ignore-not-found=true ValidatingWebhookConfiguration validating-webhook-configuration
for ns in $(OPERATOR_NAMESPACE) $(MANAGED_NAMESPACES); do \
echo "Deleting resources in $$ns"; \
kubectl delete statefulsets -n $$ns --all; \
kubectl delete deployments -n $$ns --all; \
kubectl delete svc -n $$ns --all; \
kubectl delete rc -n $$ns --all; \
kubectl delete po -n $$ns --all; \
done
## -- minikube
set-context-minikube:
kubectl config use-context "minikube"
$(eval KUBECTL_CLUSTER="minikube")
bootstrap-minikube:
hack/dev/minikube-cluster.sh
$(MAKE) set-context-minikube cluster-bootstrap
## -- clouds
PROVIDER=$(shell test -f hack/deployer/config/provider && cat hack/deployer/config/provider)
DEPLOYER=./hack/deployer/deployer --plans-file=hack/deployer/config/plans.yml --config-file=hack/deployer/config/deployer-config-$(PROVIDER).yml
build-deployer:
@ go build -mod=readonly -o ./hack/deployer/deployer ./hack/deployer/main.go
create-default-config:
ifeq ($(wildcard hack/deployer/config/deployer-config-$(PROVIDER).yml),)
@ ./hack/deployer/deployer create defaultConfig --path=hack/deployer/config --provider=$(PROVIDER)
endif
setup-deployer: build-deployer
ifeq ($(PROVIDER),)
$(MAKE) switch-gke
endif
$(MAKE) create-default-config
get-deployer-config: setup-deployer
@ $(DEPLOYER) get config
credentials: setup-deployer
@ $(DEPLOYER) get credentials
set-context: credentials
$(eval KUBECTL_CLUSTER=$($(DEPLOYER) get clusterName))
bootstrap-k8s: setup-deployer
@ $(DEPLOYER) execute
bootstrap-cloud: bootstrap-k8s
$(MAKE) cluster-bootstrap
ifeq ($(PSP), 1)
$(MAKE) apply-psp
endif
delete-cloud: setup-deployer
@ $(DEPLOYER) execute --operation=delete
switch-gke:
@ echo "gke" > hack/deployer/config/provider
switch-aks:
@ echo "aks" > hack/deployer/config/provider
switch-ocp:
@ echo "ocp" > hack/deployer/config/provider
switch-eks:
@ echo "eks" > hack/deployer/config/provider
#################################
## -- Docker images -- ##
#################################
docker-build: go-generate
docker build . \
--build-arg GO_LDFLAGS='$(GO_LDFLAGS)' \
--build-arg GO_TAGS='$(GO_TAGS)' \
-t $(OPERATOR_IMAGE)
docker-push:
@ hack/docker-push.sh $(OPERATOR_IMAGE)
purge-gcr-images:
@ for i in $(gcloud container images list-tags $(BASE_IMG) | tail +3 | awk '{print $$2}'); \
do gcloud container images untag $(BASE_IMG):$$i; \
done
switch-registry-gcr:
ifndef GCLOUD_PROJECT
$(error GCLOUD_PROJECT not set to use GCR)
endif
@ echo "REGISTRY = eu.gcr.io" > .registry.env
@ echo "REGISTRY_NAMESPACE = ${GCLOUD_PROJECT}" >> .registry.env
@ echo "E2E_REGISTRY_NAMESPACE = ${GCLOUD_PROJECT}" >> .registry.env
switch-registry-dev: # just use the default values of variables
@ rm -f .registry.env
###################################
## -- End to end tests -- ##
###################################
E2E_REGISTRY_NAMESPACE ?= eck-dev
E2E_IMG ?= $(REGISTRY)/$(E2E_REGISTRY_NAMESPACE)/eck-e2e-tests:$(TAG)
TESTS_MATCH ?= "^Test" # can be overriden to eg. TESTS_MATCH=TestMutationMoreNodes to match a single test
STACK_VERSION ?= 7.7.0
E2E_JSON ?= false
TEST_TIMEOUT ?= 5m
E2E_SKIP_CLEANUP ?= false
# clean to remove irrelevant/build-breaking generated public keys
e2e-docker-build: clean
docker build --build-arg E2E_JSON=$(E2E_JSON) -t $(E2E_IMG) -f test/e2e/Dockerfile .
e2e-docker-push:
@ hack/docker-push.sh $(E2E_IMG)
e2e-run:
@go run test/e2e/cmd/main.go run \
--operator-image=$(OPERATOR_IMAGE) \
--e2e-image=$(E2E_IMG) \
--test-regex=$(TESTS_MATCH) \
--test-license=$(TEST_LICENSE) \
--test-license-pkey-path=$(TEST_LICENSE_PKEY_PATH) \
--elastic-stack-version=$(STACK_VERSION) \
--log-verbosity=$(LOG_VERBOSITY) \
--log-to-file=$(E2E_JSON) \
--test-timeout=$(TEST_TIMEOUT) \
--pipeline=$(PIPELINE) \
--build-number=$(BUILD_NUMBER) \
--provider=$(E2E_PROVIDER) \
--clusterName=$(CLUSTER_NAME) \
--kubernetes-version=$(KUBERNETES_VERSION) \
--monitoring-secrets=$(MONITORING_SECRETS) \
--skip-cleanup=$(E2E_SKIP_CLEANUP)
e2e-generate-xml:
@ gotestsum --junitfile e2e-tests.xml --raw-command cat e2e-tests.json
# Verify e2e tests compile with no errors, don't run them
e2e-compile:
go test ./test/e2e/... -run=dryrun $(TEST_OPTS) > /dev/null
# Run e2e tests locally (not as a k8s job), with a custom http dialer
# that can reach ES services running in the k8s cluster through port-forwarding.
e2e-local: LOCAL_E2E_CTX := /tmp/e2e-local.json
e2e-local:
@go run test/e2e/cmd/main.go run \
--test-run-name=e2e \
--test-context-out=$(LOCAL_E2E_CTX) \
--test-license=$(TEST_LICENSE) \
--test-license-pkey-path=$(TEST_LICENSE_PKEY_PATH) \
--elastic-stack-version=$(STACK_VERSION) \
--auto-port-forwarding \
--local \
--log-verbosity=$(LOG_VERBOSITY) \
--ignore-webhook-failures \
--test-timeout=$(TEST_TIMEOUT)
@E2E_JSON=$(E2E_JSON) test/e2e/run.sh -run "$(TESTS_MATCH)" -args -testContextPath $(LOCAL_E2E_CTX)
##########################################
## -- Continuous integration -- ##
##########################################
ci-check: check-license-header lint shellcheck generate check-local-changes
ci: unit-xml integration-xml docker-build reattach-pv
setup-e2e: e2e-compile run-deployer install-crds apply-psp e2e-docker-build e2e-docker-push
ci-e2e: E2E_JSON := true
ci-e2e: setup-e2e e2e-run
ci-build-operator-e2e-run: E2E_JSON := true
ci-build-operator-e2e-run: setup-e2e build-operator-image e2e-run
run-deployer: build-deployer
./hack/deployer/deployer execute --plans-file hack/deployer/config/plans.yml --config-file deployer-config.yml
ci-release: clean ci-check build-operator-image
@ echo $(OPERATOR_IMAGE) was pushed!
##########################
## -- Helpers -- ##
##########################
check-requisites:
@ hack/check/check-requisites.sh
check-license-header:
@ hack/check/check-license-header.sh
# Check if some changes exist in the workspace (eg. `make generate` added some changes)
check-local-changes:
@ [[ "$$(git status --porcelain)" == "" ]] \
|| ( echo -e "\nError: dirty local changes"; git status --porcelain; exit 1 )
# Runs small Go tool to validate syntax correctness of Jenkins pipelines
validate-jenkins-pipelines:
@ go run ./hack/pipeline-validator/main.go
#########################
# Kind specific targets #
#########################
KIND_NODES ?= 3
KIND_NODE_IMAGE ?= kindest/node:v1.15.3
KIND_CLUSTER_NAME ?= eck
kind-node-variable-check:
ifndef KIND_NODE_IMAGE
$(error KIND_NODE_IMAGE is mandatory when using Kind)
endif
bootstrap-kind:
KIND_CLUSTER_NAME=${KIND_CLUSTER_NAME} \
$(MAKE) kind-cluster-$(KIND_NODES)
@ echo "Run the following command to update your current context:"
@ echo "kubectl config set-context kind-${KIND_CLUSTER_NAME}"
## Start a Kind cluster with just the CRDs, e.g.:
# "make kind-cluster-0 KIND_NODE_IMAGE=kindest/node:v1.15.0" # start a 1-node cluster
# "make kind-cluster-3 KIND_NODE_IMAGE=kindest/node:v1.15.0" # start a 1-master 3-nodes cluster
kind-cluster-%: export NODE_IMAGE = ${KIND_NODE_IMAGE}
kind-cluster-%: export CLUSTER_NAME = ${KIND_CLUSTER_NAME}
kind-cluster-%: kind-node-variable-check
./hack/kind/kind.sh \
--nodes "${*}" \
make install-crds
## Same as above but build and deploy the operator image
kind-with-operator-%: export NODE_IMAGE = ${KIND_NODE_IMAGE}
kind-with-operator-%: export CLUSTER_NAME = ${KIND_CLUSTER_NAME}
kind-with-operator-%: kind-node-variable-check docker-build
./hack/kind/kind.sh \
--load-images $(OPERATOR_IMAGE) \
--nodes "${*}" \
make install-crds apply-operator
## Run all e2e tests in a Kind cluster
set-kind-e2e-image:
ifneq ($(OPERATOR_IMAGE),)
@docker pull $(OPERATOR_IMAGE)
else
$(MAKE) go-generate docker-build
endif
kind-e2e: export E2E_JSON := true
kind-e2e: export KUBECONFIG = ${HOME}/.kube/kind-config-eck-e2e
kind-e2e: export NODE_IMAGE = ${KIND_NODE_IMAGE}
kind-e2e: kind-node-variable-check set-kind-e2e-image e2e-docker-build
./hack/kind/kind.sh \
--load-images $(OPERATOR_IMAGE),$(E2E_IMG) \
--nodes 3 \
make e2e-run OPERATOR_IMAGE=$(OPERATOR_IMAGE)
## Cleanup
delete-kind:
./hack/kind/kind.sh --stop