diff options
author | Alan Rominger <arominge@redhat.com> | 2023-06-26 21:48:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-26 21:48:58 +0200 |
commit | 974465e46ae9090d1fcb204ea67b4079ae74c980 (patch) | |
tree | 13a268360891d92aa28cbe5cf2062c3a9fc784d2 /Makefile | |
parent | Try to fix CI by adding dropped coreapi lib (#14165) (diff) | |
download | awx-974465e46ae9090d1fcb204ea67b4079ae74c980.tar.xz awx-974465e46ae9090d1fcb204ea67b4079ae74c980.zip |
Add hashivault option as docker-compose optional container (#14161)
Co-authored-by: Sarabraj Singh <singh.sarabraj@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -37,6 +37,8 @@ SPLUNK ?= false PROMETHEUS ?= false # If set to true docker-compose will also start a grafana instance GRAFANA ?= false +# If set to true docker-compose will also start a hashicorp vault instance +VAULT ?= false # If set to true docker-compose will also start a tacacs+ instance TACACS ?= false @@ -525,6 +527,7 @@ docker-compose-sources: .git/hooks/pre-commit -e enable_splunk=$(SPLUNK) \ -e enable_prometheus=$(PROMETHEUS) \ -e enable_grafana=$(GRAFANA) \ + -e enable_vault=$(VAULT) \ -e enable_tacacs=$(TACACS) \ $(EXTRA_SOURCES_ANSIBLE_OPTS) |