diff options
author | Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> | 2023-03-30 18:52:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 18:52:22 +0200 |
commit | acb22f0131bc23db441339f2ea1428a587e191c1 (patch) | |
tree | ff7853f26a3e782d97e14d6067eb38e6d4101ab1 /Makefile | |
parent | Add host_metrics page to the awxkit (diff) | |
parent | Nix websocket docs for now (diff) | |
download | awx-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-- | Makefile | 35 |
1 files changed, 28 insertions, 7 deletions
@@ -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 $@ |