mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 07:43:35 -05:00
Default to 0 execution nodes in dev env
This commit is contained in:
4
Makefile
4
Makefile
@@ -118,7 +118,7 @@ virtualenv_awx:
|
|||||||
fi; \
|
fi; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## Install third-party requirements needed for AWX's environment.
|
## Install third-party requirements needed for AWX's environment.
|
||||||
# this does not use system site packages intentionally
|
# this does not use system site packages intentionally
|
||||||
requirements_awx: virtualenv_awx
|
requirements_awx: virtualenv_awx
|
||||||
if [[ "$(PIP_OPTIONS)" == *"--no-index"* ]]; then \
|
if [[ "$(PIP_OPTIONS)" == *"--no-index"* ]]; then \
|
||||||
@@ -452,7 +452,7 @@ awx/projects:
|
|||||||
COMPOSE_UP_OPTS ?=
|
COMPOSE_UP_OPTS ?=
|
||||||
COMPOSE_OPTS ?=
|
COMPOSE_OPTS ?=
|
||||||
CONTROL_PLANE_NODE_COUNT ?= 1
|
CONTROL_PLANE_NODE_COUNT ?= 1
|
||||||
EXECUTION_NODE_COUNT ?= 2
|
EXECUTION_NODE_COUNT ?= 0
|
||||||
MINIKUBE_CONTAINER_GROUP ?= false
|
MINIKUBE_CONTAINER_GROUP ?= false
|
||||||
MINIKUBE_SETUP ?= false # if false, run minikube separately
|
MINIKUBE_SETUP ?= false # if false, run minikube separately
|
||||||
EXTRA_SOURCES_ANSIBLE_OPTS ?=
|
EXTRA_SOURCES_ANSIBLE_OPTS ?=
|
||||||
|
|||||||
@@ -128,6 +128,8 @@
|
|||||||
src: "receptor-hop.conf.j2"
|
src: "receptor-hop.conf.j2"
|
||||||
dest: "{{ sources_dest }}/receptor/receptor-hop.conf"
|
dest: "{{ sources_dest }}/receptor/receptor-hop.conf"
|
||||||
mode: '0600'
|
mode: '0600'
|
||||||
|
when:
|
||||||
|
- execution_node_count | int > 0
|
||||||
|
|
||||||
- name: Render Receptor Worker Config(s)
|
- name: Render Receptor Worker Config(s)
|
||||||
template:
|
template:
|
||||||
|
|||||||
Reference in New Issue
Block a user