forked from pantos-io/servicenode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
325 lines (284 loc) · 11.2 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
PANTOS_SERVICE_NODE_VERSION := $(shell command -v poetry >/dev/null 2>&1 && poetry version -s || echo "0.0.0")
PANTOS_SERVICE_NODE_SSH_HOST ?= bdev-service-node
PYTHON_FILES_WITHOUT_TESTS := pantos/servicenode linux/scripts/start-web.py openapi.py
PYTHON_FILES := $(PYTHON_FILES_WITHOUT_TESTS) tests
STACK_BASE_NAME=stack-service-node
INSTANCE_COUNT ?= 1
DEV_MODE ?= false
SHELL := $(shell which bash)
OPENAPI_FILE_LOCATION ?= ./docs/openapi.json
.PHONY: check-version
check-version:
@if [ -z "$(VERSION)" ]; then \
echo "Error: VERSION is not set"; \
exit 1; \
fi
@VERSION_FROM_POETRY=$$(poetry version -s) ; \
if test "$$VERSION_FROM_POETRY" != "$(VERSION)"; then \
echo "Version mismatch: expected $(VERSION), got $$VERSION_FROM_POETRY" ; \
exit 1 ; \
else \
echo "Version check passed" ; \
fi
.PHONY: dist
dist: tar wheel debian
.PHONY: code
code: check format lint sort bandit test
.PHONY: check
check:
poetry run mypy $(PYTHON_FILES_WITHOUT_TESTS)
poetry run mypy --explicit-package-bases tests
.PHONY: format
format:
poetry run yapf --in-place --recursive $(PYTHON_FILES)
.PHONY: format-check
format-check:
poetry run yapf --diff --recursive $(PYTHON_FILES)
.PHONY: lint
lint:
poetry run flake8 $(PYTHON_FILES)
.PHONY: sort
sort:
poetry run isort --force-single-line-imports $(PYTHON_FILES)
.PHONY: sort-check
sort-check:
poetry run isort --force-single-line-imports $(PYTHON_FILES) --check-only
.PHONY: bandit
bandit:
poetry run bandit -r $(PYTHON_FILES) --quiet --configfile=.bandit
.PHONY: bandit-check
bandit-check:
poetry run bandit -r $(PYTHON_FILES) --configfile=.bandit
.PHONY: test
test:
poetry run python3 -m pytest tests --ignore tests/database/postgres
.PHONY: test-postgres
test-postgres:
poetry run python3 -m pytest tests/database/postgres
.PHONY: coverage
coverage:
poetry run python3 -m pytest --cov-report term-missing --cov=pantos tests --ignore tests/database/postgres
.PHONY: coverage-postgres
coverage-postgres:
poetry run python3 -m pytest --cov-report term-missing --cov=pantos tests/database/postgres
.PHONY: coverage-all
coverage-all:
poetry run python3 -m pytest --cov-report term-missing --cov=pantos tests
.PHONY: tar
tar: dist/pantos_service_node-$(PANTOS_SERVICE_NODE_VERSION).tar.gz
.PHONY: openapi-docs
openapi-docs:
poetry run python3 -m openapi $(OPENAPI_FILE_LOCATION)
dist/pantos_service_node-$(PANTOS_SERVICE_NODE_VERSION).tar.gz: pantos/ service-node-config.yml service-node-config.env bids.yml alembic.ini pantos-service-node.sh pantos-service-node-worker.sh
cp service-node-config.yml pantos/service-node-config.yml
cp service-node-config.env pantos/service-node-config.env
cp bids.yml pantos/bids.yml
cp alembic.ini pantos/alembic.ini
cp pantos-service-node.sh pantos/pantos-service-node.sh
cp pantos-service-node-worker.sh pantos/pantos-service-node-worker.sh
chmod 755 pantos/pantos-service-node.sh
chmod 755 pantos/pantos-service-node-worker.sh
poetry build -f sdist
rm pantos/service-node-config.yml
rm pantos/service-node-config.env
rm pantos/bids.yml
rm pantos/alembic.ini
rm pantos/pantos-service-node.sh
rm pantos/pantos-service-node-worker.sh
check-poetry-plugin:
@if poetry self show plugins | grep -q poetry-plugin-freeze; then \
echo "poetry-plugin-freeze is already added."; \
else \
echo "poetry-plugin-freeze is not added. Adding now..."; \
poetry self add poetry-plugin-freeze; \
fi
freeze-wheel: check-poetry-plugin
poetry freeze-wheel
.PHONY: wheel
wheel: dist/pantos_service_node-$(PANTOS_SERVICE_NODE_VERSION)-py3-none-any.whl freeze-wheel
dist/pantos_service_node-$(PANTOS_SERVICE_NODE_VERSION)-py3-none-any.whl: pantos/ service-node-config.yml service-node-config.env bids.yml alembic.ini
cp service-node-config.yml pantos/service-node-config.yml
cp service-node-config.env pantos/service-node-config.env
cp bids.yml pantos/bids.yml
cp alembic.ini pantos/alembic.ini
poetry build -f wheel
rm pantos/service-node-config.yml
rm pantos/service-node-config.env
rm pantos/bids.yml
rm pantos/alembic.ini
.PHONY: debian-build-deps
debian-build-deps:
mk-build-deps --install --tool "apt-get --no-install-recommends -y" debian/control --remove
.PHONY: debian-full
debian-full:
mkdir -p dist
sed 's/VERSION_PLACEHOLDER/$(PANTOS_SERVICE_NODE_VERSION)/' configurator/DEBIAN/control.template > configurator/DEBIAN/control
dpkg-deb --build configurator dist/pantos-service-node-full_$(PANTOS_SERVICE_NODE_VERSION)_all.deb
rm configurator/DEBIAN/control
.PHONY: debian
debian:
$(eval debian_package := pantos-service-node_$(PANTOS_SERVICE_NODE_VERSION)_*.deb)
@if ! conda --version; then \
echo "Conda not found. Please install conda."; \
exit 1; \
fi; \
dpkg-buildpackage -uc -us -g
mkdir -p dist
ARCHITECTURE=$$(dpkg --print-architecture); \
mv ../$(debian_package) dist/pantos-service-node_$(PANTOS_SERVICE_NODE_VERSION)_$${ARCHITECTURE}.deb
.PHONY: debian-all
debian-all: debian debian-full
.PHONY: docker-debian-build
docker-debian-build:
docker buildx build -t pantos-service-node-build -f Dockerfile --target dev . --load $(ARGS);
CONTAINER_ID=$$(docker create pantos-service-node-build); \
docker cp $${CONTAINER_ID}:/app/dist/ .; \
docker rm $${CONTAINER_ID}
.PHONY: signer-key
signer-key:
@if ! command -v ssh-keygen &> /dev/null; then \
echo "ssh-keygen not found. Please install OpenSSH."; \
exit 1; \
fi; \
if [ -t 0 ]; then \
read -p "Enter path for signer key (default: ./signer_key.pem): " SIGNER_KEY_FILE; \
echo "Enter passphrase for signer key (leave empty for no passphrase):"; \
read -s SIGNER_KEY; echo; \
fi; \
if [ -z "$$SIGNER_KEY_FILE" ]; then \
SIGNER_KEY_FILE="$$(pwd)/signer_key.pem"; \
fi; \
if [ -z "$$SIGNER_KEY" ]; then \
SIGNER_KEY=""; \
fi; \
if ssh-keygen -t ed25519 -f "$$SIGNER_KEY_FILE" -N "$$SIGNER_KEY"; then \
echo "SSH key generated successfully at $$SIGNER_KEY_FILE"; \
else \
echo "Failed to generate SSH key"; \
exit 1; \
fi
.PHONY: remote-install
remote-install: debian-all
$(eval deb_file := pantos-service-node*_$(PANTOS_SERVICE_NODE_VERSION)_*.deb)
scp dist/$(deb_file) $(PANTOS_SERVICE_NODE_SSH_HOST):
ifdef DEV_PANTOS_COMMON
scp -r $(DEV_PANTOS_COMMON) $(PANTOS_SERVICE_NODE_SSH_HOST):
ssh -t $(PANTOS_SERVICE_NODE_SSH_HOST) "\
sudo systemctl stop pantos-service-node-celery;\
sudo systemctl stop pantos-service-node-server;\
sudo apt install -y ./$(deb_file);\
sudo rm -rf /opt/pantos/pantos-service-node/lib/python3.*/site-packages/pantos/common/;\
sudo cp -r common/ /opt/pantos/pantos-service-node/lib/python3.*/site-packages/pantos/;\
sudo systemctl start pantos-service-node-server;\
sudo systemctl start pantos-service-node-celery;\
rm -rf common;\
rm $(deb_file)"
else
ssh -t $(PANTOS_SERVICE_NODE_SSH_HOST) "\
sudo systemctl stop pantos-service-node-celery;\
sudo systemctl stop pantos-service-node-server;\
sudo apt install -y ./$(deb_file);\
sudo systemctl start pantos-service-node-server;\
sudo systemctl start pantos-service-node-celery;\
rm $(deb_file)"
endif
.PHONY: local-common
local-common:
ifndef DEV_PANTOS_COMMON
$(error Please define DEV_PANTOS_COMMON variable)
endif
$(eval CURRENT_COMMON := $(shell echo .venv/lib/python3.*/site-packages/pantos/common))
@if [ -d "$(CURRENT_COMMON)" ]; then \
rm -rf "$(CURRENT_COMMON)"; \
ln -s "$(DEV_PANTOS_COMMON)" "$(CURRENT_COMMON)"; \
else \
echo "Directory $(CURRENT_COMMON) does not exist"; \
fi
.PHONY: install
install: dist/pantos_service_node-$(PANTOS_SERVICE_NODE_VERSION)-py3-none-any.whl
poetry run python -m pip install dist/pantos_service_node-$(PANTOS_SERVICE_NODE_VERSION)-py3-none-any.whl
.PHONY: uninstall
uninstall:
poetry run python3 -m pip uninstall -y pantos-service-node
.PHONY: clean
clean:
rm -r -f build/
rm -r -f dist/
rm -r -f pantos_service_node.egg-info/
check-swarm-init:
@if [ "$$(docker info --format '{{.Swarm.LocalNodeState}}')" != "active" ]; then \
echo "Docker is not part of a swarm. Initializing..."; \
docker swarm init; \
else \
echo "Docker is already part of a swarm."; \
fi
docker-build:
@if [ "$$NO_BUILD" != "true" ]; then \
docker buildx bake -f docker-compose.yml --load $(ARGS); \
fi
.PHONY: docker
docker: check-swarm-init docker-build
@for i in $$(seq 1 $(INSTANCE_COUNT)); do \
( \
export STACK_NAME="${STACK_BASE_NAME}-${STACK_IDENTIFIER}-$$i"; \
export INSTANCE=$$i; \
echo "Deploying stack $$STACK_NAME"; \
if [ "$(DEV_MODE)" = "true" ]; then \
echo "Running in development mode"; \
export ARGS="$(ARGS) --watch"; \
docker compose -f docker-compose.yml -f docker-compose.override.yml -p $$STACK_NAME $$EXTRA_COMPOSE up $$ARGS & \
COMPOSE_PID=$$!; \
trap 'echo "Caught INT, killing background processes..."; kill $$COMPOSE_PID; exit 1' INT; \
else \
export ARGS="--detach --wait $(ARGS)"; \
docker compose -f docker-compose.yml -f docker-compose.override.yml -p $$STACK_NAME $$EXTRA_COMPOSE up $$ARGS; \
fi; \
trap 'exit 1' INT; \
echo "Stack $$STACK_NAME deployed"; \
if [ "$(DEV_MODE)" = "true" ]; then \
wait $$COMPOSE_PID; \
fi; \
) & \
done; \
trap 'echo "Caught INT, killing all background processes..."; kill 0; exit 1' INT; \
wait
# We need to use compose because swarm goes absolutely crazy on MacOS when using cross architecture
# And can't pull the correct images
#docker stack deploy -c docker-compose.yml -c docker-compose.override.yml $$STACK_NAME --with-registry-auth --detach=false $(ARGS) & \
.PHONY: docker-remove
docker-remove:
@STACK_NAME="${STACK_BASE_NAME}"; \
if [ -n "$(STACK_IDENTIFIER)" ]; then \
STACK_NAME="$$STACK_NAME-$(STACK_IDENTIFIER)"; \
echo "Removing the stack with identifier $(STACK_IDENTIFIER)"; \
else \
echo "** Removing all stacks **"; \
fi; \
for stack in $$(docker stack ls --format "{{.Name}}" | awk "/^$$STACK_NAME/ {print}"); do \
( \
echo "Removing stack $$stack"; \
docker stack rm $$stack --detach=false; \
echo "Removing volumes for stack $$stack"; \
docker volume ls --format "{{.Name}}" | awk '/^$$stack/ {print}' | xargs -r docker volume rm \
) & \
done; \
for compose_stack in $$(docker compose ls --filter "name=$$STACK_NAME" --format json | jq -r '.[].Name' | awk "/^$$STACK_NAME/ {print}"); do \
( \
echo "Removing Docker Compose stack $$compose_stack"; \
docker compose -p $$compose_stack down -v \
) & \
done; \
wait
.PHONY: docker-logs
docker-logs:
@for stack in $$(docker stack ls --format "{{.Name}}" | awk '/^${STACK_BASE_NAME}-${STACK_IDENTIFIER}/ {print}'); do \
echo "Showing logs for stack $$stack"; \
for service in $$(docker stack services --format "{{.Name}}" $$stack); do \
echo "Logs for service $$service in stack $$stack"; \
docker service logs --no-task-ids $$service; \
done; \
done
docker-prod: check-swarm-init
docker compose -f docker-compose.yml -f docker-compose.prod.yml up --force-recreate $(ARGS)
docker-prod-down: check-swarm-init
docker compose -f docker-compose.yml -f docker-compose.prod.yml down -v $(ARGS)