forked from openedx-unsupported/devstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
630 lines (472 loc) · 29.1 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
# This Makefile serves as the primary command-line interface to interacting with Devstack.
# Almost all targets take the form:
# make dev.ACTION.SERVICES
# where ACTION could be 'up', 'pull.without-deps', 'attach', and so on,
# and SERVICES is a plus-sign-separated list of services.
# Examples:
# make dev.attach.credentials
# make dev.pull.registrar+studio
# make dev.up.lms
# make dev.up.without-deps.lms+forum+discovery+mysql+elasticsearch+memcached
# make dev.restart.mysql+lms
# There are also "prefix-form" targets, which are simply an alternate way to spell
# the 'dev.' targets.
# Specifically:
# make dev.ACTION.SERVICE
# can be spelled as:
# make SERVICE-ACTION
# For example:
# make dev.up.registrar
# can be spelled:
# make registrar-up
# Additionally, this file pulls in default configuration variables from `options.mk`
# as well as local overrides in `options.local.mk`, if present.
# Finally, extra targets from `compatibility.mk` and `local.mk` (if present)
# are pulled into this Makefile.
# Housekeeping Rules:
# * Put new targets under an appropriate header comment.
# * Prefix targets with 'dev.' if and only if they are meant to be part
# of the general developer interface.
# * Consider adding "prefix-form" versions of new targets
# for consistency/convenience of interface.
# * Add brief ##-prefixed comments on same line as targets to include them
# in the `make help` message. Avoid adding descriptions that are overly long,
# redundant with other targets, or irrelevant to users.
.DEFAULT_GOAL := help
# All devstack targets are "PHONY" in that they do not name actual files.
# Thus, all non-parameterized targets should be added to this declaration.
.PHONY: analytics-pipeline-devstack-test build-courses clean-marketing-sync \
create-test-course dev.attach dev.backup dev.cache-programs dev.check \
dev.check-memory dev.checkout dev.clone dev.clone.https dev.clone.ssh \
dev.dbshell dev.destroy dev.down dev.drop-db dev.kill dev.logs \
dev.migrate dev.migrate.lms dev.migrate.studio dev.nfs.setup \
devpi-password dev.provision dev.ps dev.pull dev.pull.without-deps \
dev.reset dev.reset-repos dev.restart-container dev.restart-devserver \
dev.restart-devserver.forum dev.restore dev.rm-stopped dev.shell \
dev.shell.analyticspipeline dev.shell.credentials dev.shell.discovery \
dev.shell.ecommerce dev.shell.lms dev.shell.lms_watcher \
dev.shell.marketing dev.shell.registrar dev.shell.studio \
dev.shell.studio_watcher dev.shell.xqueue dev.shell.xqueue_consumer \
dev.static dev.static.lms dev.static.studio dev.stats dev.status \
dev.stop dev.sync.daemon.start dev.sync.provision \
dev.sync.requirements dev.sync.up dev.up dev.up.attach dev.up.shell \
dev.up.without-deps dev.up.without-deps.shell dev.up.with-programs \
dev.up.with-watchers dev.validate e2e-tests e2e-tests.with-shell \
feature-toggle-state help requirements selfcheck upgrade upgrade \
up-marketing-sync validate-lms-volume vnc-passwords
# Load up options (configurable through options.local.mk).
include options.mk
# The `COMPOSE_FILE` environment variable tells Docker Compose which YAML
# files to use when `docker-compose` is called without specifying any YAML files.
# These files include definitions of services and volumes.
# Depending on the value of FS_SYNC_STRATEGY, we use a slightly different set of
# files, enabling use of different strategies to synchronize files between the host and
# the containers.
# Some services are only available for certain values of FS_SYNC_STRATEGY.
# For example, the LMS/Studio asset watchers are only available for local-mounts and nfs,
# and XQueue and the Analytics Pipeline are only available for local-mounts.
# Files for use with local volume mounting (default).
ifeq ($(FS_SYNC_STRATEGY),local-mounts)
COMPOSE_FILE := docker-compose-host.yml
COMPOSE_FILE := $(COMPOSE_FILE):docker-compose-themes.yml
COMPOSE_FILE := $(COMPOSE_FILE):docker-compose-watchers.yml
COMPOSE_FILE := $(COMPOSE_FILE):docker-compose-xqueue.yml
COMPOSE_FILE := $(COMPOSE_FILE):docker-compose-analytics-pipeline.yml
COMPOSE_FILE := $(COMPOSE_FILE):docker-compose-marketing-site.yml
endif
# Files for use with Network File System -based synchronization.
ifeq ($(FS_SYNC_STRATEGY),nfs)
COMPOSE_FILE := docker-compose-host-nfs.yml
COMPOSE_FILE := $(COMPOSE_FILE):docker-compose-themes-nfs.yml
COMPOSE_FILE := $(COMPOSE_FILE):docker-compose-watchers-nfs.yml
endif
# Files for use with Docker Sync.
ifeq ($(FS_SYNC_STRATEGY),docker-sync)
COMPOSE_FILE := docker-compose-sync.yml
COMPOSE_FILE := docker-sync-marketing-site.yml
endif
ifndef COMPOSE_FILE
$(error FS_SYNC_STRATEGY is set to $(FS_SYNC_STRATEGY). Must be one of: local-mounts, nfs, docker-sync)
endif
# All three filesystem synchronization strategies require the main docker-compose.yml file.
COMPOSE_FILE := docker-compose.yml:$(COMPOSE_FILE)
# Tell Docker Compose that the Compose file list uses a colon as the separator.
COMPOSE_PATH_SEPARATOR := :
# All runnable services, separated by plus signs.
ALL_SERVICES := $(EDX_SERVICES)+$(THIRD_PARTY_SERVICES)
# These `*_SERVICES_LIST` variables are equivalent to their `*_SERVICES` counterparts,
# but with spaces for separators instead of plus signs.
EDX_SERVICES_LIST := $(subst +, ,$(EDX_SERVICES))
DB_SERVICES_LIST := $(subst +, ,$(DB_SERVICES))
ASSET_SERVICES_LIST := $(subst +, ,$(ASSET_SERVICES))
DEFAULT_SERVICES_LIST := $(subst +, ,$(DEFAULT_SERVICES))
THIRD_PARTY_SERVICES_LIST := $(subst +, ,$(THIRD_PARTY_SERVICES))
ALL_SERVICES_LIST := $(subst +, ,$(ALL_SERVICES))
# Get information on host operating system via the `uname` command.
OS := $(shell uname)
# Need to run some things under winpty in a Windows git-bash shell
# (but not when calling bash from a command shell or PowerShell).
ifneq (,$(MINGW_PREFIX))
WINPTY := winpty
else
WINPTY :=
endif
# Don't try redirecting to /dev/null in any Windows shell
ifneq (,$(findstring MINGW,$(OS)))
DEVNULL :=
else
DEVNULL := >/dev/null
endif
# Export Makefile variables to recipe shells.
export
# Include aliases from old Devstack commands to the ones in this Makefile.
# This allows us to evolve and tidy up the Devstack interface without removing support
# for existing scripts and workflows.
include compatibility.mk
# Include local, git-ignored Makefile with additional targets.
-include local.mk # Prefix with hyphen to tolerate absence of file.
########################################################################################
# Targets for managing the Devstack repo itself.
########################################################################################
# Generates a help message. Borrowed from https://github.com/pydanny/cookiecutter-djangopackage.
help: ## Display this help message.
@echo "Please use \`make <target>' where <target> is one of"
@awk -F ':.*?## ' '/^[a-zA-Z]/ && NF==2 {printf "\033[36m %-28s\033[0m %s\n", $$1, $$2}' Makefile | sort
requirements: ## Install requirements.
pip install -r requirements/base.txt
upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade
upgrade: ## Upgrade requirements with pip-tools.
pip install -qr requirements/pip-tools.txt
pip-compile --upgrade -o requirements/pip-tools.txt requirements/pip-tools.in
pip-compile --upgrade -o requirements/base.txt requirements/base.in
selfcheck: ## Check that the Makefile is free of Make syntax errors.
@echo "The Makefile is well-formed."
########################################################################################
# Developer interface: Repository management.
########################################################################################
dev.reset-repos: ## Attempt to reset the local repo checkouts to the master working state.
$(WINPTY) bash ./repo.sh reset
dev.status: ## Prints the status of all git repositories.
$(WINPTY) bash ./repo.sh status
dev.checkout: ## Check out "openedx-release/$OPENEDX_RELEASE" in each repo if set, "master" otherwise.
./repo.sh checkout
dev.clone: dev.clone.ssh ## Clone service repos to the parent directory.
dev.clone.https: ## Clone service repos using HTTPS method to the parent directory.
./repo.sh clone
dev.clone.ssh: ## Clone service repos using SSH method to the parent directory.
./repo.sh clone_ssh
########################################################################################
# Developer interface: Docker image management.
########################################################################################
dev.pull: dev.pull.$(DEFAULT_SERVICES) ## Pull latest Docker images required by default services.
dev.pull.%: ## Pull latest Docker images for services and their dependencies.
docker-compose pull --include-deps $$(echo $* | tr + " ")
dev.pull.without-deps: _expects-service-list.dev.pull.without-deps
dev.pull.without-deps.%: ## Pull latest Docker images for specific services.
docker-compose pull $$(echo $* | tr + " ")
########################################################################################
# Developer interface: Database management.
########################################################################################
dev.provision: dev.check-memory ## Provision dev environment with default services, and then stop them.
# We provision all default services as well as 'e2e' (end-to-end tests).
# e2e is not part of `DEFAULT_SERVICES` because it isn't a service;
# it's just a way to tell ./provision.sh that the fake data for end-to-end
# tests should be prepared.
$(WINPTY) bash ./provision.sh $(DEFAULT_SERVICES)+e2e
make dev.stop
dev.provision.%: ## Provision specified services.
echo $*
$(WINPTY) bash ./provision.sh $*
dev.backup: dev.up.mysql+mysql57+mongo+elasticsearch ## Write all data volumes to the host.
docker run --rm --volumes-from $$(make -s dev.print-container.mysql) -v $$(pwd)/.dev/backups:/backup debian:jessie tar zcvf /backup/mysql.tar.gz /var/lib/mysql
docker run --rm --volumes-from $$(make -s dev.print-container.mysql57) -v $$(pwd)/.dev/backups:/backup debian:jessie tar zcvf /backup/mysql57.tar.gz /var/lib/mysql
docker runsql --rm --volumes-from $$(make -s dev.print-container.mongo) -v $$(pwd)/.dev/backups:/backup debian:jessie tar zcvf /backup/mongo.tar.gz /data/db
docker run --rm --volumes-from $$(make -s dev.print-container.elasticsearch) -v $$(pwd)/.dev/backups:/backup debian:jessie tar zcvf /backup/elasticsearch.tar.gz /usr/share/elasticsearch/data
dev.restore: dev.up.mysql+mysql57+mongo+elasticsearch ## Restore all data volumes from the host. WILL OVERWRITE ALL EXISTING DATA!
docker run --rm --volumes-from $$(make -s dev.print-container.mysql) -v $$(pwd)/.dev/backups:/backup debian:jessie tar zxvf /backup/mysql.tar.gz
docker run --rm --volumes-from $$(make -s dev.print-container.mysql57) -v $$(pwd)/.dev/backups:/backup debian:jessie tar zxvf /backup/mysql57.tar.gz
docker run --rm --volumes-from $$(make -s dev.print-container.mongo) -v $$(pwd)/.dev/backups:/backup debian:jessie tar zxvf /backup/mongo.tar.gz
docker run --rm --volumes-from $$(make -s dev.print-container.elasticsearch) -v $$(pwd)/.dev/backups:/backup debian:jessie tar zxvf /backup/elasticsearch.tar.gz
# List of Makefile targets to run database migrations, in the form dev.migrate.$(service)
# Services will only have their migrations added here
# if the service is present in both $(DEFAULT_SERVICES_LIST) and $(DB_SERVICES_LIST).
_db_migration_targets = \
$(foreach db_service,$(DB_SERVICES_LIST),\
$(if $(filter $(db_service), $(DEFAULT_SERVICES_LIST)),\
dev.migrate.$(db_service)))
dev.migrate: | $(_db_migration_targets) ## Run migrations for applicable default services.
dev.migrate.studio:
docker-compose exec studio bash -c 'source /edx/app/edxapp/edxapp_env && cd /edx/app/edxapp/edx-platform/ && paver update_db'
dev.migrate.lms:
docker-compose exec lms bash -c 'source /edx/app/edxapp/edxapp_env && cd /edx/app/edxapp/edx-platform/ && paver update_db'
dev.migrate.%: ## Run migrations on a service.
docker-compose exec $* bash -c 'source /edx/app/$*/$*_env && cd /edx/app/$*/$*/ && make migrate'
dev.drop-db: _expects-database.dev.drop-db
dev.drop-db.%: ## Irreversably drop the contents of a MySQL database in each mysql container.
docker-compose exec -T mysql bash -c "mysql --execute=\"DROP DATABASE $*;\""
docker-compose exec -T mysql57 bash -c "mysql --execute=\"DROP DATABASE $*;\""
########################################################################################
# Developer interface: Container management.
########################################################################################
dev.up: dev.up.$(DEFAULT_SERVICES) ## Bring up default services.
dev.up.%: dev.check-memory ## Bring up services and their dependencies.
docker-compose up -d $$(echo $* | tr + " ")
ifeq ($(ALWAYS_CACHE_PROGRAMS),true)
make dev.cache-programs
endif
dev.up.attach: _expects-service.dev.up.attach
dev.up.attach.%: ## Bring up a service and its dependencies + and attach to it.
docker-compose up $*
dev.up.shell: _expects-service.dev.up.shell
dev.up.shell.%: ## Bring up a service and its dependencies + shell into it.
make dev.up.$*
make dev.shell.$*
dev.up.with-programs: dev.up dev.cache-programs ## Bring up default services + cache programs in LMS.
dev.up.with-programs.%: dev.up.$* dev.cache-programs ## Bring up services and their dependencies + cache programs in LMS.
dev.up.with-watchers: dev.up.$(DEFAULT_SERVICES)+lms_watcher+studio_watcher ## Bring up default services + asset watcher containers.
dev.up.with-watchers.%: ## Bring up services and their dependencies + asset watcher containers.
make dev.up.$*
make dev.up.lms_watcher+studio_watcher
dev.up.without-deps: _expects-service-list.dev.up.without-deps
dev.up.without-deps.%: dev.check-memory ## Bring up services by themselves.
docker-compose up --d --no-deps $$(echo $* | tr + " ")
dev.up.without-deps.shell: _expects-service.dev.up.without-deps.shell
dev.up.without-deps.shell.%: ## Bring up a service by itself + shell into it.
make dev.up.without-deps.$*
make dev.shell.$*
dev.ps: ## View list of created services and their statuses.
docker-compose ps
dev.print-container.%: ## Get the ID of the running container for a given service.
@# Can be run as ``make --silent dev.print-container.$service`` for just ID.
@echo $$(docker-compose ps --quiet $*)
dev.restart-container: ## Restart all service containers.
docker-compose restart $$(echo $* | tr + " ")
dev.restart-container.%: ## Restart specific services' containers.
docker-compose restart $$(echo $* | tr + " ")
dev.stop: ## Stop all running services.
(test -d .docker-sync && docker-sync stop) || true ## Ignore failure here
docker-compose stop
dev.stop.%: ## Stop specific services.
docker-compose stop $$(echo $* | tr + " ")
dev.kill: ## Kill all running services.
(test -d .docker-sync && docker-sync stop) || true ## Ignore failure here
docker-compose stop
dev.kill.%: ## Kill specific services.
docker-compose kill $$(echo $* | tr + " ")
dev.rm-stopped: ## Remove stopped containers. Does not affect running containers.
docker-compose rm --force
dev.down: ## Stop and remove containers and networks for all services.
(test -d .docker-sync && docker-sync clean) || true ## Ignore failure here
docker-compose down
dev.down.%: ## Stop and remove containers for specific services.
docker-compose rm --force --stop $$(echo $* | tr + " ")
########################################################################################
# Developer interface: System queries and checks.
########################################################################################
dev.check-memory: ## Check if enough memory has been allocated to Docker.
@if [ `docker info --format '{{.MemTotal}}'` -lt 2095771648 ]; then echo "\033[0;31mWarning, System Memory is set too low!!! Increase Docker memory to be at least 2 Gigs\033[0m"; fi || exit 0
dev.stats: ## Get per-container CPU and memory utilization data.
docker stats --format "table {{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}"
dev.check: dev.check.$(DEFAULT_SERVICES) ## Run checks for the default service set.
dev.check.%: # Run checks for a given service or set of services.
$(WINPTY) bash ./check.sh $*
dev.validate: ## Print effective Docker Compose config, validating files in COMPOSE_FILE.
docker-compose config
########################################################################################
# Developer interface: Runtime service management (caching, logs, shells).
########################################################################################
dev.cache-programs: ## Copy programs from Discovery to Memcached for use in LMS.
$(WINPTY) bash ./programs/provision.sh cache
dev.restart-devserver: _expects-service.dev.restart-devserver
dev.restart-devserver.forum:
docker-compose exec forum bash -c 'kill $$(ps aux | grep "ruby app.rb" | egrep -v "while|grep" | awk "{print \$$2}")'
dev.restart-devserver.%: ## Kill an edX service's development server. Watcher should restart it.
# Applicable to Django services only.
docker-compose exec $* bash -c 'kill $$(ps aux | egrep "manage.py ?\w* runserver" | egrep -v "while|grep" | awk "{print \$$2}")'
dev.logs: ## View logs from running containers.
docker-compose logs -f
dev.logs.%: ## View the logs of the specified service container.
docker-compose logs -f --tail=500 $*
dev.attach: _expects-service.dev.attach
dev.attach.%: ## Attach to the specified service container process for debugging & seeing logs.
docker attach "$$(make --silent dev.print-container.$*)"
dev.shell: _expects-service.dev.shell
dev.shell.%: ## Run a shell on the specified service's container.
docker-compose exec $* /bin/bash
dev.shell.analyticspipeline:
docker-compose exec analyticspipeline env TERM=$(TERM) /edx/app/analytics_pipeline/devstack.sh open
dev.shell.credentials:
docker-compose exec credentials env TERM=$(TERM) bash -c 'source /edx/app/credentials/credentials_env && cd /edx/app/credentials/credentials && /bin/bash'
dev.shell.discovery:
docker-compose exec discovery env TERM=$(TERM) /edx/app/discovery/devstack.sh open
dev.shell.ecommerce:
docker-compose exec ecommerce env TERM=$(TERM) /edx/app/ecommerce/devstack.sh open
dev.shell.registrar:
docker-compose exec registrar env TERM=$(TERM) /edx/app/registrar/devstack.sh open
dev.shell.xqueue:
docker-compose exec xqueue env TERM=$(TERM) /edx/app/xqueue/devstack.sh open
dev.shell.lms:
docker-compose exec lms env TERM=$(TERM) /edx/app/edxapp/devstack.sh open
dev.shell.lms_watcher:
docker-compose exec lms_watcher env TERM=$(TERM) /edx/app/edxapp/devstack.sh open
dev.shell.studio:
docker-compose exec studio env TERM=$(TERM) /edx/app/edxapp/devstack.sh open
dev.shell.studio_watcher:
docker-compose exec studio_watcher env TERM=$(TERM) /edx/app/edxapp/devstack.sh open
dev.shell.xqueue_consumer:
docker-compose exec xqueue_consumer env TERM=$(TERM) /edx/app/xqueue/devstack.sh open
dev.shell.marketing:
docker-compose exec marketing env TERM=$(TERM) bash -c 'cd /edx/app/edx-mktg/edx-mktg; exec /bin/bash -sh'
dev.dbshell:
docker-compose exec mysql bash -c "mysql"
dev.dbshell.%: ## Run a SQL shell on the given database.
docker-compose exec mysql bash -c "mysql $*"
dev.dbcopy57.%: ## Copy data from old mysql 5.6 container into a new 5.7 db
docker-compose exec mysql bash -c "mysqldump $*" > .dev/$*.sql
docker-compose exec -T mysql57 bash -c "mysql $*" < .dev/$*.sql
rm .dev/$*.sql
# List of Makefile targets to run static asset generation, in the form dev.static.$(service)
# Services will only have their asset generation added here
# if the service is present in both $(DEFAULT_SERVICES) and $(ASSET_SERVICES).
_asset_compilation_targets = \
$(foreach asset_service,$(ASSET_SERVICES_LIST),\
$(if $(filter $(asset_service), $(DEFAULT_SERVICES_LIST)),\
dev.static.$(asset_service)))
dev.static: | $(_asset_compilation_targets)
dev.static.lms:
docker-compose exec lms bash -c 'source /edx/app/edxapp/edxapp_env && cd /edx/app/edxapp/edx-platform/ && paver update_assets lms'
dev.static.studio:
docker-compose exec studio bash -c 'source /edx/app/edxapp/edxapp_env && cd /edx/app/edxapp/edx-platform/ && paver update_assets studio'
dev.static.%: ## Rebuild static assets for the specified service's container.
docker-compose exec $* bash -c 'source /edx/app/$*/$*_env && cd /edx/app/$*/$*/ && make static'
########################################################################################
# Developer interface: Commands that do a combination of things.
########################################################################################
dev.reset: dev.down dev.reset-repos dev.pull dev.up dev.static dev.migrate ## Attempt to reset the local devstack to the master working state without destroying data.
dev.destroy: ## Irreversibly remove all devstack-related containers, networks, and volumes.
$(WINPTY) bash ./destroy.sh
########################################################################################
# Developer interface: Support for alternative file synchronization strategies.
########################################################################################
dev.nfs.setup: ## Sets up an NFS server on the /Users folder, allowing NFS mounting on docker.
./setup_native_nfs_docker_osx.sh
dev.nfs.%: ## Run any 'dev.'-prefixed command, but using NFS configuration.
FS_SYNC_STRATEGY=nfs make dev.$*
# TODO: Improve or rip out Docker Sync targets.
# They are not well-fleshed-out and it is not clear if anyone uses them.
dev.sync.daemon.start: ## Start the docker-sycn daemon.
docker-sync start
dev.sync.provision: dev.sync.daemon.start ## Provision with docker-sync enabled.
FS_SYNC_STRATEGY=docker-sync make dev.provision
dev.sync.requirements: ## Install requirements for docker-sync usage.
gem install docker-sync
dev.sync.up: dev.sync.daemon.start ## Bring up all services with docker-sync enabled.
FS_SYNC_STRATEGY=docker-sync make dev.up
########################################################################################
# Support for "prefix-form" commands:
# $service-$action instead of dev.$action.$services
# For example, the command:
# make dev.attach.registrar
# can be expressed as:
# make registrar-attach
# This form may be quicker to type and more amenable to tab-completion.
########################################################################################
# Implementation notes:
# The weird syntax here is a way to generate generic targets from existing generic targets.
# For example:
# $(addsuffix -migrate, $(DB_SERVICES_LIST))
# Takes the list of all DB-backed services and appends '-migrate', yielding a list like:
# credentials-migrate discovery-migrate ecommerce-migrate ...(and so on)
# Then:
# : %-migrate: dev.migrate.%
# Tells Make to match against the aforementioned list, and given an occurance like:
# SERVICE-migrate
# define it as a target with no recipe but with a single prerequisite:
# dev.migrate.SERVICE
# Effectively, 'SERVICE-migrate' is aliased to 'dev.migrate.SERVICE' for
# all values of SERVICE in $(DB_SERVICES_LIST).
$(addsuffix -pull, $(ALL_SERVICES_LIST)): %-pull: dev.pull.%
$(addsuffix -pull-without-deps, $(ALL_SERVICES_LIST)): %-pull-without-deps: dev.pull.without-deps.%
$(addsuffix -migrate, $(DB_SERVICES_LIST)): %-migrate: dev.migrate.%
$(addsuffix -up, $(ALL_SERVICES_LIST)): %-up: dev.up.%
$(addsuffix -up-attach, $(ALL_SERVICES_LIST)): %-up-attach: dev.up.attach.%
$(addsuffix -up-shell, $(ALL_SERVICES_LIST)): %-up-shell: dev.up.shell.%
$(addsuffix -up-with-programs, $(EDX_SERVICES_LIST)): %-up-with-programs: dev.up.with-programs.%
$(addsuffix -up-with-watchers, $(ALL_SERVICES_LIST)): %-up-with-watchers: dev.up.with-watchers.%
$(addsuffix -up-without-deps, $(ALL_SERVICES_LIST)): %-up-without-deps: dev.up.without-deps.%
$(addsuffix -up-without-deps-shell, $(ALL_SERVICES_LIST)): %-up-without-deps-shell: dev.up.without-deps.shell.%
$(addsuffix -print-container, $(ALL_SERVICES_LIST)): %-print-container: dev.print-container.%
$(addsuffix -restart-container, $(ALL_SERVICES_LIST)): %-restart-container: dev.restart-container.%
$(addsuffix -stop, $(ALL_SERVICES_LIST)): %-stop: dev.stop.%
$(addsuffix -kill, $(ALL_SERVICES_LIST)): %-kill: dev.kill.%
$(addsuffix -down, $(ALL_SERVICES_LIST)): %-down: dev.down.%
$(addsuffix -check, $(EDX_SERVICES_LIST)): %-check: dev.check.%
$(addsuffix -restart-devserver, $(EDX_SERVICES_LIST)): %-restart-devserver: dev.restart-devserver.%
$(addsuffix -logs, $(ALL_SERVICES_LIST)): %-logs: dev.logs.%
$(addsuffix -attach, $(ALL_SERVICES_LIST)): %-attach: dev.attach.%
$(addsuffix -shell, $(ALL_SERVICES_LIST)): %-shell: dev.shell.%
$(addsuffix -static, $(ASSET_SERVICES_LIST)): %-static: dev.static.%
########################################################################################
# Helper targets for other targets to use.
########################################################################################
# Many targets allow service(s) to be passed in as a suffix.
# For example, make dev.up.lms` is a more specific form of `make dev.up`.
# For some targets, it is invalid NOT to pass in a service as a suffix.
# For example, `make dev.attach.lms` is valid, but `make dev.attach` is not.
# For such targets, we still want to define the invalid stub target in this Makefile
# for the purpose of including it in command-line completion.
# These _expects-* targets can be used to define those stub targets such that they
# print out something useful. See `dev.attach` for an example usage.
_expects-service.%:
@echo "'make $*' on its own has no effect."
@echo "It expects a service as a suffix."
@echo "For example:"
@echo " make $*.lms"
_expects-service-list.%:
@echo "'make $*' on its own has no effect."
@echo "It expects one or more services as a suffix, separated by plus signs."
@echo "For example:"
@echo " make $*.lms"
@echo "Or:"
@echo " make $*.registrar+ecommerce+studio"
_expects-database.%:
@echo "'make $*' on its own has no effect."
@echo "It expects a database as a suffix."
@echo "For example:"
@echo " make $*.edxapp"
########################################################################################
# Miscellaneous targets.
# These are useful, but don't fit nicely to the greater Devstack interface.
########################################################################################
e2e-tests: dev.up.lms+studio ## Run the end-to-end tests against the service containers.
docker run -t --network=$(COMPOSE_PROJECT_NAME)_default -v $(DEVSTACK_WORKSPACE)/edx-e2e-tests:/edx-e2e-tests --env-file $(DEVSTACK_WORKSPACE)/edx-e2e-tests/devstack_env edxops/e2e env TERM=$(TERM) bash -c 'paver e2e_test'
e2e-tests.with-shell: dev.up.lms+studio ## Start the end-to-end tests container with a shell.
docker run -it --network=$(COMPOSE_PROJECT_NAME)_default -v $(DEVSTACK_WORKSPACE)/edx-e2e-tests:/edx-e2e-tests --env-file $(DEVSTACK_WORKSPACE)/edx-e2e-tests/devstack_env edxops/e2e env TERM=$(TERM) bash
validate-lms-volume: ## Validate that changes to the local workspace are reflected in the LMS container.
touch $(DEVSTACK_WORKSPACE)/edx-platform/testfile
docker-compose exec -T lms ls /edx/app/edxapp/edx-platform/testfile
rm $(DEVSTACK_WORKSPACE)/edx-platform/testfile
vnc-passwords: ## Get the VNC passwords for the Chrome and Firefox Selenium containers.
@docker-compose logs chrome 2>&1 | grep "VNC password" | tail -1
@docker-compose logs firefox 2>&1 | grep "VNC password" | tail -1
devpi-password: ## Get the root devpi password for the devpi container.
docker-compose exec devpi bash -c "cat /data/server/.serverpassword"
analytics-pipeline-devstack-test: ## Run analytics pipeline tests in travis build.
docker-compose exec -u hadoop -T analyticspipeline bash -c 'sudo chown -R hadoop:hadoop /edx/app/analytics_pipeline && source /edx/app/hadoop/.bashrc && make develop-local && make docker-test-acceptance-local ONLY_TESTS=edx.analytics.tasks.tests.acceptance.test_internal_reporting_database && make docker-test-acceptance-local ONLY_TESTS=edx.analytics.tasks.tests.acceptance.test_user_activity'
hadoop-application-logs-%: ## View hadoop logs by application Id.
docker-compose exec nodemanager yarn logs -applicationId $*
create-test-course: ## Provisions studio, ecommerce, and marketing with course(s) in test-course.json.
# NOTE: marketing course creation is not available for those outside edX
$(WINPTY) bash ./course-generator/create-courses.sh --studio --ecommerce --marketing course-generator/test-course.json
build-courses: ## Build course and provision studio, ecommerce, and marketing with it.
# Modify test-course.json before running this make target to generate a custom course
# NOTE: marketing course creation is not available for those outside edX
$(WINPTY) bash ./course-generator/build-course-json.sh course-generator/tmp-config.json
$(WINPTY) bash ./course-generator/create-courses.sh --studio --ecommerce --marketing course-generator/tmp-config.json
rm course-generator/tmp-config.json
feature-toggle-state: ## Gather the state of feature toggles configured for various IDAs.
$(WINPTY) bash ./gather-feature-toggle-state.sh
up-marketing-sync: ## Bring up all services (including the marketing site) with docker-sync.
docker-sync-stack start -c docker-sync-marketing-site.yml
clean-marketing-sync: ## Remove the docker-sync containers for all services (including the marketing site).
docker-sync-stack clean -c docker-sync-marketing-site.yml