summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorHao Liu <44379968+TheRealHaoLiu@users.noreply.github.com>2023-03-30 18:52:22 +0200
committerGitHub <noreply@github.com>2023-03-30 18:52:22 +0200
commitacb22f0131bc23db441339f2ea1428a587e191c1 (patch)
treeff7853f26a3e782d97e14d6067eb38e6d4101ab1 /Makefile
parentAdd host_metrics page to the awxkit (diff)
parentNix websocket docs for now (diff)
downloadawx-acb22f0131bc23db441339f2ea1428a587e191c1.tar.xz
awx-acb22f0131bc23db441339f2ea1428a587e191c1.zip
Merge pull request #13423 from ansible/feature_web-task-split
Allow web and task container to be deployed in separate deployment on Kubernetes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile35
1 files changed, 28 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 6c19ab1b32..d81266352f 100644
--- a/Makefile
+++ b/Makefile
@@ -217,12 +217,6 @@ daphne:
fi; \
daphne -b 127.0.0.1 -p 8051 awx.asgi:channel_layer
-wsbroadcast:
- @if [ "$(VENV_BASE)" ]; then \
- . $(VENV_BASE)/awx/bin/activate; \
- fi; \
- $(PYTHON) manage.py run_wsbroadcast
-
## Run to start the background task dispatcher for development.
dispatcher:
@if [ "$(VENV_BASE)" ]; then \
@@ -230,7 +224,6 @@ dispatcher:
fi; \
$(PYTHON) manage.py run_dispatcher
-
## Run to start the zeromq callback receiver
receiver:
@if [ "$(VENV_BASE)" ]; then \
@@ -247,6 +240,34 @@ jupyter:
fi; \
$(MANAGEMENT_COMMAND) shell_plus --notebook
+## Start the rsyslog configurer process in background in development environment.
+run-rsyslog-configurer:
+ @if [ "$(VENV_BASE)" ]; then \
+ . $(VENV_BASE)/awx/bin/activate; \
+ fi; \
+ $(PYTHON) manage.py run_rsyslog_configurer
+
+## Start cache_clear process in background in development environment.
+run-cache-clear:
+ @if [ "$(VENV_BASE)" ]; then \
+ . $(VENV_BASE)/awx/bin/activate; \
+ fi; \
+ $(PYTHON) manage.py run_cache_clear
+
+## Start the wsrelay process in background in development environment.
+run-wsrelay:
+ @if [ "$(VENV_BASE)" ]; then \
+ . $(VENV_BASE)/awx/bin/activate; \
+ fi; \
+ $(PYTHON) manage.py run_wsrelay
+
+## Start the heartbeat process in background in development environment.
+run-heartbeet:
+ @if [ "$(VENV_BASE)" ]; then \
+ . $(VENV_BASE)/awx/bin/activate; \
+ fi; \
+ $(PYTHON) manage.py run_heartbeet
+
reports:
mkdir -p $@