forked from elastic/cloud-on-k8s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
534 lines (421 loc) · 17.6 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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
# or more contributor license agreements. Licensed under the Elastic License 2.0;
# you may not use this file except in compliance with the Elastic License 2.0.
#################################
## -- 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: CONTROLLER_TOOLS_VERSION = $(shell grep controller-tools go.mod | grep -o "v[0-9\.]*")
controller-gen:
ifneq ($(shell controller-gen --version 2> /dev/null), Version: ${CONTROLLER_TOOLS_VERSION})
@(cd /tmp; GO111MODULE=on go install sigs.k8s.io/controller-tools/cmd/controller-gen@${CONTROLLER_TOOLS_VERSION})
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)
OPERATOR_DOCKERHUB_IMAGE ?= docker.io/elastic/$(IMG_NAME):$(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
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_V1_CRDS=config/crds/v1/all-crds.yaml
generate: tidy generate-crds-v1 generate-config-file 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-v1: go-generate controller-gen
# Generate webhook manifest
# Webhook definitions exist in both pkg/apis and pkg/controller/elasticsearch/validation
$(CONTROLLER_GEN) webhook object:headerFile=./hack/boilerplate.go.txt paths=./pkg/apis/... paths=./pkg/controller/elasticsearch/validation/...
# Generate manifests e.g. CRD, RBAC etc.
$(CONTROLLER_GEN) crd:crdVersions=v1,generateEmbeddedObjectMeta=true paths="./pkg/apis/..." output:crd:artifacts:config=config/crds/v1/bases
# apply patches to work around some CRD generation issues, and merge them into a single file
kubectl kustomize config/crds/v1/patches > $(ALL_V1_CRDS)
# generate a CRD only version without the operator manifests
@ ./hack/manifest-gen/manifest-gen.sh -c -g > config/crds.yaml
# generate the operator manifests
@ ./hack/manifest-gen/manifest-gen.sh -g \
--namespace=$(OPERATOR_NAMESPACE) \
--profile=global \
--set=installCRDs=false \
--set=telemetry.distributionChannel=all-in-one \
--set=image.tag=$(IMG_VERSION) \
--set=image.repository=$(BASE_IMG) \
--set=nameOverride=$(OPERATOR_NAME) \
--set=fullnameOverride=$(OPERATOR_NAME) > config/operator.yaml
generate-config-file:
@hack/config-extractor/extract.sh
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 support/reattach-pv/main.go
compile-all:
@ go build ./...
@ go test -run=dryrun ./cmd/... ./pkg/... > /dev/null
@ $(MAKE) e2e-compile
## -- tests
unit: clean
ECK_TEST_LOG_LEVEL=$(LOG_VERBOSITY) go test ./pkg/... ./cmd/... -cover $(TEST_OPTS)
unit-xml: clean
ECK_TEST_LOG_LEVEL=$(LOG_VERBOSITY) gotestsum --junitfile unit-tests.xml -- -cover ./pkg/... ./cmd/... $(TEST_OPTS)
integration: GO_TAGS += integration
integration: clean generate-crds-v1
ECK_TEST_LOG_LEVEL=$(LOG_VERBOSITY) go test -tags='$(GO_TAGS)' ./pkg/... ./cmd/... -cover $(TEST_OPTS)
integration-xml: GO_TAGS += integration
integration-xml: clean generate-crds-v1
ECK_TEST_LOG_LEVEL=$(LOG_VERBOSITY) gotestsum --junitfile integration-tests.xml -- -tags='$(GO_TAGS)' -cover ./pkg/... ./cmd/... $(TEST_OPTS)
lint:
golangci-lint run
hack/manifest-gen/test.sh
shellcheck:
shellcheck $(shell find . -type f -name "*.sh" -not -path "./vendor/*")
upgrade-test: docker-build docker-push
@hack/upgrade-test-harness/run.sh
#############################
## -- Run -- ##
#############################
install-crds: generate-crds-v1
kubectl apply -f $(ALL_V1_CRDS)
# 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 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 \
--enable-leader-election=false \
--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) \
--enable-leader-election=false \
--manage-webhook-certs=false)
build-operator-image:
@ docker pull $(OPERATOR_IMAGE) \
&& echo "OK: image $(OPERATOR_IMAGE) already published" \
|| $(MAKE) docker-build docker-push
build-operator-multiarch-image:
@ hack/docker.sh -l -m $(OPERATOR_IMAGE)
@ hack/docker.sh -l -m $(OPERATOR_DOCKERHUB_IMAGE)
@ (docker buildx imagetools inspect $(OPERATOR_IMAGE) | grep -q 'linux/arm64' 2>&1 >/dev/null \
&& docker buildx imagetools inspect $(OPERATOR_DOCKERHUB_IMAGE) | grep -q 'linux/arm64' 2>&1 >/dev/null) \
&& echo "OK: image $(OPERATOR_IMAGE) already published" \
|| $(MAKE) docker-multiarch-build
# 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:
ifeq ($(strip $(MANAGED_NAMESPACES)),)
@ ./hack/manifest-gen/manifest-gen.sh -g \
--namespace=$(OPERATOR_NAMESPACE) \
--set=image.tag=$(IMG_VERSION) \
--set=image.repository=$(BASE_IMG) \
--set=nameOverride=$(OPERATOR_NAME) \
--set=fullnameOverride=$(OPERATOR_NAME) | kubectl apply -f -
else
@ ./hack/manifest-gen/manifest-gen.sh -g \
--profile=restricted \
--namespace=$(OPERATOR_NAMESPACE) \
--set=installCRDs=true \
--set=image.tag=$(IMG_VERSION) \
--set=image.repository=$(BASE_IMG) \
--set=nameOverride=$(OPERATOR_NAME) \
--set=fullnameOverride=$(OPERATOR_NAME) \
--set=managedNamespaces="{$(MANAGED_NAMESPACES)}" | kubectl apply -f -
endif
apply-psp:
kubectl apply -f config/recipes/psp/elastic-psp.yaml
kubectl apply -f config/recipes/psp/beats-agent-psp.yaml
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
switch-kind:
@ echo "kind" > hack/deployer/config/provider
switch-tanzu:
@ echo "tanzu" > hack/deployer/config/provider
#################################
## -- Docker images -- ##
#################################
docker-multiarch-build: go-generate generate-config-file
@ hack/docker.sh -l -m $(OPERATOR_IMAGE)
@ hack/docker.sh -l -m $(OPERATOR_DOCKERHUB_IMAGE)
docker buildx build . \
--progress=plain \
--build-arg GO_LDFLAGS='$(GO_LDFLAGS)' \
--build-arg GO_TAGS='$(GO_TAGS)' \
--build-arg VERSION='$(VERSION)' \
--platform linux/amd64,linux/arm64 \
-t $(OPERATOR_IMAGE) \
-t $(OPERATOR_DOCKERHUB_IMAGE) \
--push
docker-build: go-generate generate-config-file
DOCKER_BUILDKIT=1 docker build . \
--progress=plain \
--build-arg GO_LDFLAGS='$(GO_LDFLAGS)' \
--build-arg GO_TAGS='$(GO_TAGS)' \
--build-arg VERSION='$(VERSION)' \
-t $(OPERATOR_IMAGE)
docker-push:
@ hack/docker.sh -l -p $(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_TAG := $(TAG)
E2E_IMG_TAG_SUFFIX ?= $(subst /,-,$(PIPELINE)) # Derive the tag suffix from the PIPELINE environment variable
ifneq ($(strip $(E2E_IMG_TAG_SUFFIX)),) # If the suffix is not empty, append it to the tag
E2E_IMG_TAG := $(TAG)-$(E2E_IMG_TAG_SUFFIX)
endif
E2E_IMG ?= $(REGISTRY)/$(E2E_REGISTRY_NAMESPACE)/eck-e2e-tests:$(E2E_IMG_TAG)
E2E_STACK_VERSION ?= 7.15.2
export TESTS_MATCH ?= "^Test" # can be overriden to eg. TESTS_MATCH=TestMutationMoreNodes to match a single test
export E2E_JSON ?= false
TEST_TIMEOUT ?= 30m
E2E_SKIP_CLEANUP ?= false
E2E_DEPLOY_CHAOS_JOB ?= false
E2E_TAGS ?= e2e # go build constraints potentially restricting the tests to run
E2E_TEST_ENV_TAGS ?= "" # tags conveying information about the test environment to the test runner
# combine e2e tags (es, kb, apm etc.) with go tags (release) to ensure test code that imports generated code works
# this relies on the deprecated space separated build constraints in Go which makes construction in make easier
E2E_TAGS += $(GO_TAGS)
export E2E_TAGS
e2e-docker-build: go-generate
DOCKER_BUILDKIT=1 docker build --progress=plain --build-arg E2E_JSON=$(E2E_JSON) --build-arg E2E_TAGS='$(E2E_TAGS)' \
-t $(E2E_IMG) -f test/e2e/Dockerfile .
e2e-docker-push:
@ hack/docker.sh -l -p $(E2E_IMG)
e2e-docker-multiarch-build: go-generate
@ hack/docker.sh -l -m $(E2E_IMG)
docker buildx build \
--progress=plain \
--file test/e2e/Dockerfile \
--build-arg E2E_JSON=$(E2E_JSON) \
--build-arg E2E_TAGS='$(E2E_TAGS)' \
--platform linux/amd64,linux/arm64 \
--push \
-t $(E2E_IMG) .
e2e-run: go-generate
@go run -tags='$(GO_TAGS)' 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=$(E2E_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) \
--monitoring-secrets=$(MONITORING_SECRETS) \
--skip-cleanup=$(E2E_SKIP_CLEANUP) \
--deploy-chaos-job=$(E2E_DEPLOY_CHAOS_JOB) \
--test-env-tags=$(E2E_TEST_ENV_TAGS)
e2e-generate-xml:
@ hack/ci/generate-junit-xml-report.sh e2e-tests.json
# Verify e2e tests compile with no errors, don't run them
e2e-compile: go-generate
@go test ./test/e2e/... -run=dryrun -tags='$(E2E_TAGS)' $(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-generate
@go run -tags '$(GO_TAGS)' test/e2e/cmd/main.go run \
--test-run-name=e2e \
--operator-image=$(OPERATOR_IMAGE) \
--test-context-out=$(LOCAL_E2E_CTX) \
--test-license=$(TEST_LICENSE) \
--test-license-pkey-path=$(TEST_LICENSE_PKEY_PATH) \
--elastic-stack-version=$(E2E_STACK_VERSION) \
--auto-port-forwarding \
--local \
--log-verbosity=$(LOG_VERBOSITY) \
--ignore-webhook-failures \
--test-timeout=$(TEST_TIMEOUT) \
--test-env-tags=$(E2E_TEST_ENV_TAGS)
##########################################
## -- 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 apply-psp e2e-docker-multiarch-build
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-multiarch-image
@ echo $(OPERATOR_IMAGE) and $(OPERATOR_DOCKERHUB_IMAGE) were 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