-
Notifications
You must be signed in to change notification settings - Fork 27
/
Makefile
847 lines (695 loc) · 32.5 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
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
# osparc-simcore general makefile
#
# NOTES:
# - GNU make version 4.2 recommended
# - Use 'make -n *' to dry-run during debugging
# - In windows, only WSL is supported
#
# by sanderegg, pcrespov
#
.DEFAULT_GOAL := help
SHELL := /bin/bash
MAKE_C := $(MAKE) --no-print-directory --directory
# Operating system
ifeq ($(filter Windows_NT,$(OS)),)
IS_WSL := $(if $(findstring Microsoft,$(shell uname -a)),WSL,)
IS_WSL2 := $(if $(findstring -microsoft-,$(shell uname -a)),WSL2,)
IS_OSX := $(filter Darwin,$(shell uname -a))
IS_LINUX:= $(if $(or $(IS_WSL),$(IS_OSX)),,$(filter Linux,$(shell uname -a)))
endif
IS_WIN := $(strip $(if $(or $(IS_LINUX),$(IS_OSX),$(IS_WSL)),,$(OS)))
$(if $(IS_WIN),$(error Windows is not supported in all recipes. Use WSL instead. Follow instructions in README.md),)
# VARIABLES ----------------------------------------------
# NOTE: Name given to any of the services that must be build, regardless
# whether they are part of the simcore stack or not. This list can be obtained from
#
# cat services/docker-compose-build.yml | yq ".services | keys | sort"
#
SERVICES_NAMES_TO_BUILD := \
agent \
api-server \
autoscaling \
catalog \
clusters-keeper \
dask-sidecar \
datcore-adapter \
director \
director-v2 \
dynamic-sidecar \
efs-guardian \
invitations \
migration \
osparc-gateway-server \
payments \
resource-usage-tracker \
dynamic-scheduler \
service-integration \
static-webserver \
storage \
webserver
CLIENT_WEB_OUTPUT := $(CURDIR)/services/static-webserver/client/source-output
# version control
export VCS_URL := $(shell git config --get remote.origin.url)
export VCS_REF := $(shell git rev-parse HEAD)
export VCS_REF_CLIENT := $(shell git log --pretty=tformat:"%h" -n1 services/static-webserver/client)
export VCS_STATUS_CLIENT:= $(if $(shell git status -s),'modified/untracked','clean')
export BUILD_DATE := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
# api-versions
export AGENT_API_VERSION := $(shell cat $(CURDIR)/services/api-server/VERSION)
export API_SERVER_API_VERSION := $(shell cat $(CURDIR)/services/api-server/VERSION)
export AUTOSCALING_API_VERSION := $(shell cat $(CURDIR)/services/autoscaling/VERSION)
export CATALOG_API_VERSION := $(shell cat $(CURDIR)/services/catalog/VERSION)
export DIRECTOR_API_VERSION := $(shell cat $(CURDIR)/services/director/VERSION)
export DIRECTOR_V2_API_VERSION:= $(shell cat $(CURDIR)/services/director-v2/VERSION)
export STORAGE_API_VERSION := $(shell cat $(CURDIR)/services/storage/VERSION)
export INVITATIONS_API_VERSION := $(shell cat $(CURDIR)/services/invitations/VERSION)
export PAYMENTS_API_VERSION := $(shell cat $(CURDIR)/services/payments/VERSION)
export DYNAMIC_SCHEDULER_API_VERSION := $(shell cat $(CURDIR)/services/dynamic-scheduler/VERSION)
export DATCORE_ADAPTER_API_VERSION := $(shell cat $(CURDIR)/services/datcore-adapter/VERSION)
export WEBSERVER_API_VERSION := $(shell cat $(CURDIR)/services/web/server/VERSION)
# swarm stacks
export SWARM_STACK_NAME ?= master-simcore
export SWARM_STACK_NAME_NO_HYPHEN = $(subst -,_,$(SWARM_STACK_NAME))
# version tags
export DOCKER_IMAGE_TAG ?= latest
export DOCKER_REGISTRY ?= itisfoundation
get_my_ip := $(shell (hostname --all-ip-addresses || hostname -i) 2>/dev/null | cut --delimiter=" " --fields=1)
# NOTE: this is only for WSL2 as the WSL2 subsystem IP is changing on each reboot
ifeq ($(IS_WSL2),WSL2)
S3_ENDPOINT := http://$(get_my_ip):9001
export S3_ENDPOINT
endif
# Check that given variables are set and all have non-empty values,
# die with an error otherwise.
#
# Params:
# 1. Variable name(s) to test.
# 2. (optional) Error message to print.
guard-%:
@ if [ "${${*}}" = "" ]; then \
echo "Environment variable $* not set"; \
exit 1; \
fi
# Check that given variables are set and all have non-empty values,
# exit with an error otherwise.
#
# Params:
# 1. Variable name(s) to test.
# 2. (optional) Error message to print.
check_defined = \
$(strip $(foreach 1,$1, \
$(call __check_defined,$1,$(strip $(value 2)))))
__check_defined = \
$(if $(value $1),, \
$(error Undefined $1$(if $2, ($2))))
.PHONY: help
help: ## help on rule's targets
@awk 'BEGIN {FS = ":.*?## "}; /^[^.[:space:]].*?:.*?## / {if ($$1 != "help" && NF == 2) {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}}' $(MAKEFILE_LIST)
test_python_version: ## Check Python version, throw error if compilation would fail with the installed version
# Checking python version
@.venv/bin/python ./scripts/test_python_version.py
## DOCKER BUILD -------------------------------
#
# - all builds are immediatly tagged as 'local/{service}:${BUILD_TARGET}' where BUILD_TARGET='development', 'production', 'cache'
# - only production and cache images are released (i.e. tagged pushed into registry)
#
SWARM_HOSTS = $(shell docker node ls --format="{{.Hostname}}" 2>$(if $(IS_WIN),NUL,/dev/null))
.PHONY: build build-nc rebuild build-devel build-devel-nc
# docker buildx cache location
DOCKER_BUILDX_CACHE_FROM ?= /tmp/.buildx-cache
DOCKER_BUILDX_CACHE_TO ?= /tmp/.buildx-cache
DOCKER_TARGET_PLATFORMS ?= linux/amd64
comma := ,
define _docker_compose_build
export BUILD_TARGET=$(if $(findstring -devel,$@),development,production) &&\
pushd services &&\
$(foreach service, $(SERVICES_NAMES_TO_BUILD),\
$(if $(push),\
export $(subst -,_,$(shell echo $(service) | tr a-z A-Z))_VERSION=$(shell cat services/$(service)/VERSION);\
,) \
)\
docker buildx bake \
$(if $(findstring -devel,$@),,\
--set *.platform=$(DOCKER_TARGET_PLATFORMS) \
)\
$(if $(findstring $(comma),$(DOCKER_TARGET_PLATFORMS)),,\
$(if $(local-dest),\
$(foreach service, $(SERVICES_NAMES_TO_BUILD),\
--set $(service).output="type=docker$(comma)dest=$(local-dest)/$(service).tar") \
,--load\
)\
)\
$(if $(push),--push,) \
$(if $(push),--file docker-bake.hcl,) --file docker-compose-build.yml $(if $(target),$(target),) \
$(if $(findstring -nc,$@),--no-cache,\
$(foreach service, $(SERVICES_NAMES_TO_BUILD),\
--set $(service).cache-to=type=gha$(comma)mode=max$(comma)scope=$(service) \
--set $(service).cache-from=type=gha$(comma)scope=$(service)) \
) &&\
popd;
endef
rebuild: build-nc # alias
build build-nc: .env ## Builds production images and tags them as 'local/{service-name}:production'. For single target e.g. 'make target=webserver build'. To export to a folder: `make local-dest=/tmp/build`
# Building service$(if $(target),,s) $(target)
@$(_docker_compose_build)
# List production images
@docker images --filter="reference=local/*:production"
load-images: guard-local-src ## loads images from local-src
# loading from images from $(local-src)...
@$(foreach service, $(SERVICES_NAMES_TO_BUILD),\
docker load --input $(local-src)/$(service).tar; \
)
# all images loaded
@docker images
build-devel build-devel-nc: .env ## Builds development images and tags them as 'local/{service-name}:development'. For single target e.g. 'make target=webserver build-devel'
ifeq ($(target),)
# Building services
@$(_docker_compose_build)
else
ifeq ($(findstring static-webserver,$(target)),static-webserver)
# Compiling front-end
$(MAKE_C) services/static-webserver/client touch compile-dev
endif
# Building service $(target)
@$(_docker_compose_build)
endif
# List development images
@docker images --filter="reference=local/*:development"
$(CLIENT_WEB_OUTPUT):
# Ensures source-output folder always exists to avoid issues when mounting webclient->static-webserver dockers. Supports PowerShell
-mkdir $(if $(IS_WIN),,-p) $(CLIENT_WEB_OUTPUT)
.PHONY: shell
shell:
docker run -it local/$(target):production /bin/sh
## DOCKER SWARM -------------------------------
#
# - All resolved configuration are named as .stack-${name}-*.yml to distinguish from docker-compose files which can be parametrized
#
SWARM_HOSTS = $(shell docker node ls --format="{{.Hostname}}" 2>$(if $(IS_WIN),null,/dev/null))
docker-compose-configs = $(wildcard services/docker-compose*.yml)
CPU_COUNT = $(shell cat /proc/cpuinfo | grep processor | wc -l )
# NOTE: fore details on below SEE
# https://github.com/docker/compose/issues/7771#issuecomment-765243575
# below sed operation fixes above issue
# `sed -E "s/cpus: ([0-9\\.]+)/cpus: '\\1'/"`
# remove when this issues is fixed, this will most likely occur
# when upgrading the version of docker-compose
.stack-simcore-development.yml: .env $(docker-compose-configs)
# Creating config for stack with 'local/{service}:development' to $@
@export DOCKER_REGISTRY=local && \
export DOCKER_IMAGE_TAG=development && \
export DEV_PC_CPU_COUNT=${CPU_COUNT} && \
scripts/docker/docker-stack-config.bash -e .env \
services/docker-compose.yml \
services/docker-compose.local.yml \
services/docker-compose.devel.yml \
> $@
.stack-simcore-production.yml: .env $(docker-compose-configs)
# Creating config for stack with 'local/{service}:production' to $@
@export DOCKER_REGISTRY=local && \
export DOCKER_IMAGE_TAG=production && \
scripts/docker/docker-stack-config.bash -e .env \
services/docker-compose.yml \
services/docker-compose.local.yml \
> $@
.stack-simcore-development-frontend.yml: .env $(docker-compose-configs)
# Creating config for stack with 'local/{service}:production' (except of static-webserver -> static-webserver:development) to $@
@export DOCKER_REGISTRY=local && \
export DOCKER_IMAGE_TAG=production && \
scripts/docker/docker-stack-config.bash -e $< \
services/docker-compose.yml \
services/docker-compose.local.yml \
services/docker-compose.devel-frontend.yml \
> $@
.stack-simcore-version.yml: .env $(docker-compose-configs)
# Creating config for stack with '$(DOCKER_REGISTRY)/{service}:${DOCKER_IMAGE_TAG}' to $@
@scripts/docker/docker-stack-config.bash -e .env \
services/docker-compose.yml \
services/docker-compose.local.yml \
> $@
.stack-vendor-services.yml: .env $(docker-compose-configs)
# Creating config for vendors stack to $@
@scripts/docker/docker-stack-config.bash -e $< \
services/docker-compose-dev-vendors.yml \
> $@
.stack-ops.yml: .env $(docker-compose-configs)
# Creating config for ops stack to $@
ifdef ops_ci
@$(shell \
scripts/docker/docker-stack-config.bash -e .env \
services/docker-compose-ops-ci.yml \
> $@ \
)
else
@$(shell \
scripts/docker/docker-stack-config.bash -e .env \
services/docker-compose-ops.yml \
> $@ \
)
endif
.PHONY: up-devel up-prod up-prod-ci up-version up-latest .deploy-ops .deploy-vendors
.deploy-vendors: .stack-vendor-services.yml
# Deploy stack 'vendors'
docker stack deploy --detach=true --with-registry-auth -c $< vendors
.deploy-ops: .stack-ops.yml
# Deploy stack 'ops'
ifndef ops_disabled
docker stack deploy --detach=true --with-registry-auth -c $< ops
else
@echo "Explicitly disabled with ops_disabled flag in CLI"
endif
define _show_endpoints
# The following endpoints are available
set -o allexport; \
source $(CURDIR)/.env; \
set +o allexport; \
separator=------------------------------------------------------------------------------------;\
separator=$${separator}$${separator}$${separator};\
rows="%-24s | %90s | %12s | %12s\n";\
TableWidth=140;\
printf "%24s | %90s | %12s | %12s\n" Name Endpoint User Password;\
printf "%.$${TableWidth}s\n" "$$separator";\
printf "$$rows" "oSparc platform" "http://$(get_my_ip).nip.io:9081";\
printf "$$rows" "oSparc public API doc" "http://$(get_my_ip).nip.io:8006/dev/doc";\
printf "$$rows" "oSparc web API doc" "http://$(get_my_ip).nip.io:9081/dev/doc";\
printf "$$rows" "Dask Dashboard" "http://$(get_my_ip).nip.io:8787";\
printf "$$rows" "Docker Registry" "http://$${REGISTRY_URL}/v2/_catalog" $${REGISTRY_USER} $${REGISTRY_PW};\
printf "$$rows" "Invitations" "http://$(get_my_ip).nip.io:8008/dev/doc" $${INVITATIONS_USERNAME} $${INVITATIONS_PASSWORD};\
printf "$$rows" "Jaeger" "http://$(get_my_ip).nip.io:16686";\
printf "$$rows" "Payments" "http://$(get_my_ip).nip.io:8011/dev/doc" $${PAYMENTS_USERNAME} $${PAYMENTS_PASSWORD};\
printf "$$rows" "Portainer" "http://$(get_my_ip).nip.io:9000" admin adminadmin;\
printf "$$rows" "Postgres DB" "http://$(get_my_ip).nip.io:18080/?pgsql=postgres&username="$${POSTGRES_USER}"&db="$${POSTGRES_DB}"&ns=public" $${POSTGRES_USER} $${POSTGRES_PASSWORD};\
printf "$$rows" "Rabbit Dashboard" "http://$(get_my_ip).nip.io:15672" admin adminadmin;\
printf "$$rows" "Redis" "http://$(get_my_ip).nip.io:18081";\
printf "$$rows" "Storage S3 Minio" "http://$(get_my_ip).nip.io:9001" 12345678 12345678;\
printf "$$rows" "Traefik Dashboard" "http://$(get_my_ip).nip.io:8080/dashboard/";\
printf "$$rows" "Vendor Manual (Fake)" "http://manual.$(get_my_ip).nip.io:9081";\
printf "\n%s\n" "⚠️ if a DNS is not used (as displayed above), the interactive services started via dynamic-sidecar";\
echo "⚠️ will not be shown. The frontend accesses them via the uuid.services.YOUR_IP.nip.io:9081";
endef
show-endpoints:
@$(_show_endpoints)
up-devel: .stack-simcore-development.yml .init-swarm $(CLIENT_WEB_OUTPUT) ## Deploys local development stack, qx-compile+watch and ops stack (pass 'make ops_disabled=1 up-...' to disable)
# Start compile+watch front-end container [front-end]
@$(MAKE_C) services/static-webserver/client down compile-dev flags=--watch
@$(MAKE_C) services/dask-sidecar certificates
# Deploy stack $(SWARM_STACK_NAME) [back-end]
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
@$(MAKE) .deploy-vendors
@$(MAKE) .deploy-ops
@$(_show_endpoints)
@$(MAKE_C) services/static-webserver/client follow-dev-logs
up-devel-frontend: .stack-simcore-development-frontend.yml .init-swarm ## Every service in production except static-webserver. For front-end development
# Start compile+watch front-end container [front-end]
@$(MAKE_C) services/static-webserver/client down compile-dev flags=--watch
@$(MAKE_C) services/dask-sidecar certificates
# Deploy stack $(SWARM_STACK_NAME) [back-end]
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
@$(MAKE) .deploy-vendors
@$(MAKE) .deploy-ops
@$(_show_endpoints)
@$(MAKE_C) services/static-webserver/client follow-dev-logs
up-prod: .stack-simcore-production.yml .init-swarm ## Deploys local production stack and ops stack (pass 'make ops_disabled=1 ops_ci=1 up-...' to disable or target=<service-name> to deploy a single service)
ifeq ($(target),)
@$(MAKE_C) services/dask-sidecar certificates
# Deploy stack $(SWARM_STACK_NAME)
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
@$(MAKE) .deploy-vendors
@$(MAKE) .deploy-ops
else
# deploys ONLY $(target) service
@docker compose --file $< up --detach $(target)
endif
@$(_show_endpoints)
up-version: .stack-simcore-version.yml .init-swarm ## Deploys versioned stack '$(DOCKER_REGISTRY)/{service}:$(DOCKER_IMAGE_TAG)' and ops stack (pass 'make ops_disabled=1 up-...' to disable)
@$(MAKE_C) services/dask-sidecar certificates
# Deploy stack $(SWARM_STACK_NAME)
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
@$(MAKE) .deploy-vendors
@$(MAKE) .deploy-ops
@$(_show_endpoints)
up-latest:
@export DOCKER_IMAGE_TAG=latest; \
$(MAKE) up-version
@$(_show_endpoints)
.PHONY: down leave
down: ## Stops and removes stack
# Removing stacks in reverse order to creation
-@$(foreach stack,\
$(shell docker stack ls --format={{.Name}} | tac),\
docker stack rm $(stack);)
# Removing client containers (if any)
-@$(MAKE_C) services/static-webserver/client down
# Removing generated docker compose configurations, i.e. .stack-*
ifneq ($(wildcard .stack-*), )
-@rm $(wildcard .stack-*)
endif
# Removing local registry if any
-@docker ps --all --quiet --filter "name=$(LOCAL_REGISTRY_HOSTNAME)" | xargs --no-run-if-empty docker rm --force
leave: ## Forces to stop all services, networks, etc by the node leaving the swarm
-docker swarm leave -f
.PHONY: .init-swarm
.init-swarm:
# Ensures swarm is initialized (careful we use a default pool of 172.20.0.0/14. Ensure you do not use private IPs in that range!)
$(if $(SWARM_HOSTS),,docker swarm init --advertise-addr=$(get_my_ip) --default-addr-pool 172.20.0.0/14)
## DOCKER TAGS -------------------------------
.PHONY: tag-local tag-version tag-latest
tag-local: ## Tags version '${DOCKER_REGISTRY}/{service}:${DOCKER_IMAGE_TAG}' images as 'local/{service}:production'
# Tagging all '${DOCKER_REGISTRY}/{service}:${DOCKER_IMAGE_TAG}' as 'local/{service}:production'
@$(foreach service, $(SERVICES_NAMES_TO_BUILD)\
,docker tag ${DOCKER_REGISTRY}/$(service):${DOCKER_IMAGE_TAG} local/$(service):production; \
)
tag-version: ## Tags 'local/{service}:production' images as versioned '${DOCKER_REGISTRY}/{service}:${DOCKER_IMAGE_TAG}'
# Tagging all 'local/{service}:production' as '${DOCKER_REGISTRY}/{service}:${DOCKER_IMAGE_TAG}'
@$(foreach service, $(SERVICES_NAMES_TO_BUILD)\
,docker tag local/$(service):production ${DOCKER_REGISTRY}/$(service):${DOCKER_IMAGE_TAG}; \
)
tag-latest: ## Tags last locally built production images as '${DOCKER_REGISTRY}/{service}:latest'
@export DOCKER_IMAGE_TAG=latest; \
$(MAKE) tag-version
## DOCKER PULL/PUSH -------------------------------
#
# TODO: cannot push modified/untracked
# TODO: cannot push disceted
#
.PHONY: pull-version
pull-version: .env ## pulls images from DOCKER_REGISTRY tagged as DOCKER_IMAGE_TAG
# Pulling images '${DOCKER_REGISTRY}/{service}:${DOCKER_IMAGE_TAG}'
@docker compose --file services/docker-compose-deploy.yml pull
.PHONY: push-version push-latest
push-latest: tag-latest
@export DOCKER_IMAGE_TAG=latest; \
$(MAKE) push-version
# below BUILD_TARGET gets overwritten but is required when merging yaml files
push-version: tag-version
# pushing '${DOCKER_REGISTRY}/{service}:${DOCKER_IMAGE_TAG}'
@export BUILD_TARGET=undefined; \
docker compose --file services/docker-compose-build.yml --file services/docker-compose-deploy.yml push
## ENVIRONMENT -------------------------------
.PHONY: devenv devenv-all node-env
.check-uv-installed:
@echo "Checking if 'uv' is installed..."
@if ! command -v uv >/dev/null 2>&1; then \
curl -LsSf https://astral.sh/uv/install.sh | sh; \
else \
printf "\033[32m'uv' is installed. Version: \033[0m"; \
uv --version; \
fi
# upgrading uv
-@uv self --quiet update
.venv: .check-uv-installed
@uv venv $@
@echo "# upgrading tools to latest version in" && $@/bin/python --version
@uv pip --quiet install --upgrade \
pip~=24.0 \
wheel \
setuptools \
uv
@uv pip list
devenv: .venv test_python_version .vscode/settings.json .vscode/launch.json ## create a development environment (configs, virtual-env, hooks, ...)
@uv pip --quiet install -r requirements/devenv.txt
# Installing pre-commit hooks in current .git repo
@$</bin/pre-commit install
@echo "To activate the venv, execute 'source .venv/bin/activate'"
devenv-all: devenv ## sets up extra development tools (everything else besides python)
# Upgrading client compiler
@$(MAKE_C) services/static-webserver/client upgrade
# Building tools
@$(MAKE_C) scripts/json-schema-to-openapi-schema
node_modules: package.json
# checking npm installed
@npm --version
# installing package.json
npm install --package-lock
nodenv: node_modules ## builds node_modules local environ (TODO)
.env: .env-devel ## creates .env file from defaults in .env-devel
$(if $(wildcard $@), \
@echo "WARNING ##### $< is newer than $@ ####"; diff -uN $@ $<; false;,\
@echo "WARNING ##### $@ does not exist, cloning $< as $@ ############"; cp $< $@)
.vscode/settings.json: .vscode/settings.template.json
$(if $(wildcard $@), \
@echo "WARNING ##### $< is newer than $@ ####"; diff -uN $@ $<; false;,\
@echo "WARNING ##### $@ does not exist, cloning $< as $@ ############"; cp $< $@)
.vscode/launch.json: .vscode/launch.template.json
$(if $(wildcard $@), \
@echo "WARNING ##### $< is newer than $@ ####"; diff -uN $@ $<; false;,\
@echo "WARNING ##### $@ does not exist, cloning $< as $@ ############"; cp $< $@)
## TOOLS -------------------------------
.PHONY: pylint
pylint: ## python linting
# pylint version info
@pylint --version
# Running linter in packages and services (except director)
@folders=$$(find $(CURDIR)/services $(CURDIR)/packages -type d -not -path "*/director/*" -name 'src' -exec dirname {} \; | sort -u); \
exit_status=0; \
for folder in $$folders; do \
echo "Linting $$folder"; \
$(MAKE_C) "$$folder" pylint || exit_status=1; \
done;\
exit $$exit_status
# Running linter elsewhere
@pylint --rcfile=.pylintrc -v $(CURDIR)/tests --ignore=examples
# See exit codes and command line https://pylint.readthedocs.io/en/latest/user_guide/run.html#exit-codes
ruff: ## python ruffing
# ruff version info
@ruff --version
# Running ruff in packages and services (except director)
@ruff check \
--config=$(CURDIR)/.ruff.toml \
--respect-gitignore \
--extend-exclude="**/tests" \
--extend-exclude="**/generated_models" \
--extend-exclude="**/director/" \
$(CURDIR)/services \
$(CURDIR)/packages
.PHONY: new-service
new-service: .venv ## Bakes a new project from cookiecutter-simcore-pyservice and drops it under services/ [UNDER DEV]
$</bin/pip3 --quiet install cookiecutter
.venv/bin/cookiecutter gh:itisfoundation/cookiecutter-simcore-pyservice --output-dir $(CURDIR)/services
.PHONY: openapi-specs
openapi-specs: ## bundles and validates openapi specifications and schemas of ALL service's API
@$(MAKE_C) services/web/server $@
@$(MAKE_C) services/storage $@
.PHONY: settings-schema.json
settings-schema.json: ## [container] dumps json-schema settings of all services
@$(MAKE_C) services/agent $@
@$(MAKE_C) services/api-server $@
@$(MAKE_C) services/autoscaling $@
@$(MAKE_C) services/catalog $@
@$(MAKE_C) services/dask-sidecar $@
@$(MAKE_C) services/datcore-adapter $@
@$(MAKE_C) services/director-v2 $@
@$(MAKE_C) services/invitations $@
@$(MAKE_C) services/payments $@
@$(MAKE_C) services/dynamic-scheduler $@
@$(MAKE_C) services/storage $@
@$(MAKE_C) services/web/server $@
.PHONY: auto-doc
auto-doc: .stack-simcore-version.yml ## updates diagrams for README.md
# Parsing docker compose config $< and creating graph
@./scripts/docker-compose-viz.bash $<
# Updating docs/img
@mv --verbose $<.png docs/img/
.PHONY: postgres-upgrade
postgres-upgrade: ## initalize or upgrade postgres db to latest state
@$(MAKE_C) packages/postgres-database/docker build
@$(MAKE_C) packages/postgres-database/docker upgrade
.PHONY: CITATION-validate
CITATION-validate: ## validates CITATION.cff file
@docker run --rm -v $(CURDIR):/app citationcff/cffconvert --validate
## LOCAL DOCKER REGISTRY (for local development only) -------------------------------
LOCAL_REGISTRY_HOSTNAME := registry
LOCAL_REGISTRY_VOLUME := $(LOCAL_REGISTRY_HOSTNAME)
.PHONY: local-registry rm-registry
rm-registry: ## remove the registry and changes to host/file
@$(if $(shell grep "127.0.0.1 $(LOCAL_REGISTRY_HOSTNAME)" /etc/hosts),\
echo removing entry in /etc/hosts...;\
sudo sed -i "/127.0.0.1 $(LOCAL_REGISTRY_HOSTNAME)/d" /etc/hosts,\
echo /etc/hosts is already cleaned)
@$(if $(shell jq -e '.["insecure-registries"]? | index("http://$(LOCAL_REGISTRY_HOSTNAME):5000")? // empty' /etc/docker/daemon.json),\
echo removing entry in /etc/docker/daemon.json...;\
jq 'if .["insecure-registries"] then .["insecure-registries"] |= map(select(. != "http://$(LOCAL_REGISTRY_HOSTNAME):5000")) else . end' /etc/docker/daemon.json > /tmp/daemon.json && \
sudo mv /tmp/daemon.json /etc/docker/daemon.json &&\
echo restarting engine... &&\
sudo service docker restart &&\
echo done,\
echo /etc/docker/daemon.json already cleaned)
# removing container and volume
-@docker rm --force $(LOCAL_REGISTRY_HOSTNAME)
-@docker volume rm $(LOCAL_REGISTRY_VOLUME)
local-registry: .env ## creates a local docker registry and configure simcore to use it (NOTE: needs admin rights)
@$(if $(shell grep "127.0.0.1 $(LOCAL_REGISTRY_HOSTNAME)" /etc/hosts),,\
echo configuring host file to redirect $(LOCAL_REGISTRY_HOSTNAME) to 127.0.0.1; \
sudo echo 127.0.0.1 $(LOCAL_REGISTRY_HOSTNAME) | sudo tee -a /etc/hosts;\
echo done)
@$(if $(shell jq -e '.["insecure-registries"]? | index("http://$(LOCAL_REGISTRY_HOSTNAME):5000")? // empty' /etc/docker/daemon.json),,\
echo configuring docker engine to use insecure local registry...; \
jq 'if .["insecure-registries"] | index("http://$(LOCAL_REGISTRY_HOSTNAME):5000") then . else .["insecure-registries"] += ["http://$(LOCAL_REGISTRY_HOSTNAME):5000"] end' /etc/docker/daemon.json > /tmp/daemon.json &&\
sudo mv /tmp/daemon.json /etc/docker/daemon.json &&\
echo restarting engine... &&\
sudo service docker restart &&\
echo done)
@$(if $(shell docker ps --format="{{.Names}}" | grep registry),,\
echo starting registry on http://$(LOCAL_REGISTRY_HOSTNAME):5000...; \
docker run \
--detach \
--init \
--env REGISTRY_STORAGE_DELETE_ENABLED=true \
--publish 5000:5000 \
--volume $(LOCAL_REGISTRY_VOLUME):/var/lib/registry \
--name $(LOCAL_REGISTRY_HOSTNAME) \
registry:2)
# WARNING: environment file .env is now setup to use local registry on port 5000 without any security (take care!)...
@echo REGISTRY_AUTH=False >> .env
@echo REGISTRY_SSL=False >> .env
@echo REGISTRY_PATH=$(LOCAL_REGISTRY_HOSTNAME):5000 >> .env
@echo REGISTRY_URL=$(get_my_ip):5000 >> .env
@echo DIRECTOR_REGISTRY_CACHING=False >> .env
@echo CATALOG_BACKGROUND_TASK_REST_TIME=1 >> .env
# local registry set in $(LOCAL_REGISTRY_HOSTNAME):5000
# images currently in registry:
@sleep 3
curl --silent $(LOCAL_REGISTRY_HOSTNAME):5000/v2/_catalog | jq '.repositories'
info-registry: ## info on local registry (if any)
# ping API
curl --silent $(LOCAL_REGISTRY_HOSTNAME):5000/v2
# list all
curl --silent $(LOCAL_REGISTRY_HOSTNAME):5000/v2/_catalog | jq
# target detail info (if set)
$(if $(target),\
@echo Tags for $(target); \
curl --silent $(LOCAL_REGISTRY_HOSTNAME):5000/v2/$(target)/tags/list | jq ,\
@echo No target set)
## INFO -------------------------------
.PHONY: info info-images info-swarm
info: ## displays setup information
@echo setup info --------------------------------
@echo ' Detected OS : $(IS_LINUX)$(IS_OSX)$(IS_WSL)$(IS_WSL2)$(IS_WIN)'
@echo ' SWARM_STACK_NAME : ${SWARM_STACK_NAME}'
@echo ' DOCKER_REGISTRY : $(DOCKER_REGISTRY)'
@echo ' DOCKER_IMAGE_TAG : ${DOCKER_IMAGE_TAG}'
@echo ' BUILD_DATE : ${BUILD_DATE}'
@echo ' VCS_* '
@echo ' - ULR : ${VCS_URL}'
@echo ' - REF : ${VCS_REF}'
@echo ' - (STATUS)REF_CLIENT : (${VCS_STATUS_CLIENT}) ${VCS_REF_CLIENT}'
@make --silent info-tools
.PHONY: show-tools
info-tools: ## displays tools versions
@echo dev-tools versions -------------------------
@echo ' awk : $(shell awk -W version 2>&1 | head -n 1)'
@echo ' docker : $(shell docker --version)'
@echo ' docker buildx : $(shell docker buildx version)'
@echo ' docker compose: $(shell docker compose version)'
@echo ' jq : $(shell jq --version)'
@echo ' make : $(shell make --version 2>&1 | head -n 1)'
@echo ' node : $(shell node --version 2> /dev/null || echo ERROR nodejs missing)'
@echo ' python : $(shell python3 --version)'
@echo ' uv : $(shell uv --version 2> /dev/null || echo ERROR uv missing)'
@echo ' ubuntu : $(shell lsb_release --description --short 2> /dev/null | tail || echo ERROR Not an Ubuntu OS )'
define show-meta
$(foreach iid,$(shell docker images */$(1):* -q | sort | uniq),\
docker image inspect $(iid) | jq '.[0] | .RepoTags, .Config.Labels, .Architecture';)
endef
info-images: ## lists tags and labels of built images. To display one: 'make target=webserver info-images'
ifeq ($(target),)
@$(foreach service,$(SERVICES_NAMES_TO_BUILD),\
echo "## $(service) images:";\
docker images */$(service):*;\
$(call show-meta,$(service))\
)
else
## $(target) images:
@$(call show-meta,$(target))
endif
info-swarm: ## displays info about stacks and networks
ifneq ($(SWARM_HOSTS), )
# Stacks in swarm
@docker stack ls
# Containers (tasks) running in '$(SWARM_STACK_NAME)' stack
-@docker stack ps $(SWARM_STACK_NAME)
# Services in '$(SWARM_STACK_NAME)' stack
-@docker stack services $(SWARM_STACK_NAME)
# Services in 'ops' stack
-@docker stack services ops
# Networks
@docker network ls
endif
## CLEAN -------------------------------
.PHONY: clean clean-images clean-venv clean-all clean-more
_git_clean_args := -dx --force --exclude=.vscode --exclude=TODO.md --exclude=.venv --exclude=.python-version --exclude="*keep*"
_running_containers = $(shell docker ps -aq)
.check-clean:
@git clean -n $(_git_clean_args)
@echo -n "Are you sure? [y/N] " && read ans && [ $${ans:-N} = y ]
@echo -n "$(shell whoami), are you REALLY sure? [y/N] " && read ans && [ $${ans:-N} = y ]
clean-venv: devenv ## Purges .venv into original configuration
# Cleaning your venv
@uv pip sync --quiet $(CURDIR)/requirements/devenv.txt
@uv pip list
clean-hooks: ## Uninstalls git pre-commit hooks
@-pre-commit uninstall 2> /dev/null || rm .git/hooks/pre-commit
clean: .check-clean ## cleans all unversioned files in project and temp files create by this makefile
# Cleaning unversioned
@git clean $(_git_clean_args)
# Cleaning static-webserver/client
@$(MAKE_C) services/static-webserver/client clean-files
clean-more: ## cleans containers and unused volumes
# pruning unused volumes
-@docker volume prune --force
# pruning buildx cache
-@docker buildx prune --force
# stops and deletes running containers
@$(if $(_running_containers), docker rm --force $(_running_containers),)
clean-images: ## removes all created images
# Cleaning all service images
-$(foreach service,$(SERVICES_NAMES_TO_BUILD)\
,docker image rm --force $(shell docker images */$(service):* -q);)
# Cleaning webclient
-@$(MAKE_C) services/static-webserver/client clean-images
# Cleaning postgres maintenance
@$(MAKE_C) packages/postgres-database/docker clean
clean-all: clean clean-more clean-images clean-hooks # Deep clean including .venv and produced images
-rm -rf .venv
.PHONY: reset
reset: ## restart docker daemon (LINUX ONLY)
sudo systemctl restart docker
# RELEASE --------------------------------------------------------------------------------------------------------------------------------------------
staging_prefix := staging_
prod_prefix := v
_git_get_current_branch = $(shell git rev-parse --abbrev-ref HEAD)
# NOTE: be careful that GNU Make replaces newlines with space which is why this command cannot work using a Make function
_url_encoded_title = $(if $(findstring -staging, $@),Staging%20$(name),)$(version)
_url_encoded_tag = $(if $(findstring -staging, $@),$(staging_prefix)$(name),$(prod_prefix))$(version)
_url_encoded_target = $(if $(git_sha),$(git_sha),$(if $(findstring -hotfix, $@),$(_git_get_current_branch),master))
_prettify_logs = $$(git log \
$$(git describe --match="$(if $(findstring -staging, $@),$(staging_prefix),$(prod_prefix))*" --abbrev=0 --tags)..$(if $(git_sha),$(git_sha),HEAD) \
--pretty=format:"- %s")
define _url_encoded_logs
$(shell \
scripts/url-encoder.bash \
"$(_prettify_logs)"\
)
endef
_git_get_repo_orga_name = $(shell git config --get remote.origin.url | \
grep --perl-regexp --only-matching "((?<=git@github\.com:)|(?<=https:\/\/github\.com\/))(.*?)(?=.git)")
.PHONY: .check-on-master-branch .create_github_release_url
.check-on-master-branch:
@if [ "$(_git_get_current_branch)" != "master" ]; then\
echo -e "\e[91mcurrent branch is not master branch."; exit 1;\
fi
define create_github_release_url
# ensure tags are uptodate
git pull --tags && \
echo -e "\e[33mOpen the following link to create the $(if $(findstring -staging, $@),staging,production) release:" && \
echo -e "\e[32mhttps://github.com/$(_git_get_repo_orga_name)/releases/new?prerelease=$(if $(findstring -staging, $@),1,0)&target=$(_url_encoded_target)&tag=$(_url_encoded_tag)&title=$(_url_encoded_title)&body=$(_url_encoded_logs)" && \
echo -e "\e[33mOr open the following link to create the $(if $(findstring -staging, $@),staging,production) release and paste the logs:" && \
echo -e "\e[32mhttps://github.com/$(_git_get_repo_orga_name)/releases/new?prerelease=$(if $(findstring -staging, $@),1,0)&target=$(_url_encoded_target)&tag=$(_url_encoded_tag)&title=$(_url_encoded_title)" && \
echo -e "\e[34m$(_prettify_logs)"
endef
.PHONY: release-staging release-prod
release-staging release-prod: .check-on-master-branch ## Helper to create a staging or production release in Github (usage: make release-staging name=sprint version=1 git_sha=optional or make release-prod version=1.2.3 git_sha=mandatory)
$(create_github_release_url)
.PHONY: release-hotfix release-staging-hotfix
release-hotfix release-staging-hotfix: ## Helper to create a hotfix release in Github (usage: make release-hotfix version=1.2.4 git_sha=optional or make release-staging-hotfix name=Sprint version=2)
$(create_github_release_url)