2017-09-13 04:45:18 +03:00
localhost ansible_connection=local ansible_python_interpreter="/usr/bin/env python"
2017-08-16 04:42:18 +03:00
[all:vars]
2017-08-29 23:14:28 +03:00
2017-09-26 04:52:23 +03:00
# Remove these lines if you want to run a local image build
# Otherwise the setup playbook will install the official Ansible images. Versions may
# be selected based on: latest, 1, 1.0, 1.0.0, 1.0.0.123
# by default the base will be used to search for ansible/awx_web and ansible/awx_task
dockerhub_base=ansible
2017-09-01 05:21:25 +03:00
# Openshift Install
# Will need to set -e openshift_password=developer -e docker_registry_password=$(oc whoami -t)
2018-08-11 16:46:49 +03:00
# or set -e openshift_token=TOKEN
2017-08-16 04:42:18 +03:00
# openshift_host=127.0.0.1:8443
2018-04-12 05:53:20 +03:00
# openshift_project=awx
2017-08-16 04:42:18 +03:00
# openshift_user=developer
2018-05-15 21:33:08 +03:00
# openshift_skip_tls_verify=False
# openshift_pg_emptydir=True
2017-08-16 04:42:18 +03:00
2018-01-09 21:43:40 +03:00
# Kubernetes Install
# kubernetes_context=test-cluster
2018-04-12 05:53:20 +03:00
# kubernetes_namespace=awx
2018-07-02 15:33:26 +03:00
# tiller_namespace=kube-system
2019-01-12 04:54:05 +03:00
# Optional Kubernetes Variables
# pg_persistence_storageClass=StorageClassName
# pg_cpu_limit=1000
# pg_mem_limit=2
2018-01-09 21:43:40 +03:00
2019-06-20 23:40:08 +03:00
# Kubernetes Ingress Annotations
# You can use the variables below to pass annotations to Kubernetes Ingress
# The example below shows an annotation to be used with Traefik but other Ingress controllers are also supported.
#kubernetes_ingress_hostname=awx.example.org
#kubernetes_ingress_annotations={'kubernetes.io/ingress.class': 'traefik', 'traefik.ingress.kubernetes.io/redirect-entry-point': 'https'}
2018-03-14 20:03:55 +03:00
# Kubernetes and Openshift Install Resource Requests
2019-03-12 18:48:41 +03:00
# These are the request and limit values for a pod's container for task/web/rabbitmq/memcached/management.
2019-01-12 04:41:32 +03:00
# The total amount of requested resources for a pod is the sum of all
# resources requested by all containers in the pod
# A cpu_request of 1500 is 1.5 cores for the container to start out with.
# A cpu_limit defines the maximum cores that that container can reserve.
# A mem_request of 2 is for 2 gigabytes of memory for the container
# A mem_limit defines the maximum memory that that container can reserve.
# Default values for these entries can be found in ./roles/kubernetes/defaults/main.yml
2018-04-12 05:53:20 +03:00
# task_cpu_request=1500
# task_mem_request=2
2019-01-12 04:41:32 +03:00
# task_cpu_limit=2000
# task_mem_limit=4
# web_cpu_limit=1000
# web_mem_limit=2
# rabbitmq_cpu_limit=1000
# rabbitmq_mem_limit=3
# memcached_cpu_limit=1000
# memcached_mem_limit=2
# management_cpu_limit=2000
# management_mem_limit=2
2018-03-14 20:03:55 +03:00
2018-01-17 12:16:50 +03:00
# Common Docker parameters
2018-08-04 11:49:07 +03:00
awx_task_hostname=awx
awx_web_hostname=awxweb
2017-08-30 20:40:18 +03:00
postgres_data_dir=/tmp/pgdocker
2019-02-28 16:06:59 +03:00
host_port=80
2019-04-03 18:50:10 +03:00
host_port_ssl=443
2018-08-04 11:50:16 +03:00
#ssl_certificate=
2019-04-03 18:17:12 +03:00
docker_compose_dir=/tmp/awxcompose
2017-08-30 20:40:18 +03:00
2017-09-26 16:58:07 +03:00
# Required for Openshift when building the image on your own
# Optional for Openshift if using Dockerhub or another prebuilt registry
2018-01-17 12:16:50 +03:00
# Required for Docker Compose Install if building the image on your own
# Optional for Docker Compose Install if using Dockerhub or another prebuilt registry
2017-09-26 16:58:07 +03:00
# Define if you want the image pushed to a registry. The container definition will also use these images
2017-08-30 20:40:18 +03:00
# docker_registry=172.30.1.1:5000
# docker_registry_repository=awx
# docker_registry_username=developer
2017-08-29 23:14:28 +03:00
2017-10-16 07:38:28 +03:00
# Docker_image will not attempt to push to remote if the image already exists locally
# Set this to true to delete images from docker on the build host so that they are pushed to the remote repository
2017-10-20 04:43:37 +03:00
# docker_remove_local_images=False
2017-10-16 07:38:28 +03:00
2017-09-08 00:21:28 +03:00
# Set pg_hostname if you have an external postgres server, otherwise
2017-09-26 04:52:23 +03:00
# a new postgres service will be created
2017-08-16 04:42:18 +03:00
# pg_hostname=postgresql
pg_username=awx
2019-01-14 19:17:40 +03:00
# pg_password should be random 10 character alphanumeric string, when postgresql is running on kubernetes
# NB: it's a limitation of the "official" postgres helm chart
2017-08-16 04:42:18 +03:00
pg_password=awxpass
pg_database=awx
pg_port=5432
2019-01-21 21:47:34 +03:00
#pg_sslmode=require
2017-08-16 04:42:18 +03:00
2018-10-10 02:15:32 +03:00
# RabbitMQ Configuration
rabbitmq_password=awxpass
rabbitmq_erlang_cookie=cookiemonster
2017-09-26 04:52:23 +03:00
# Use a local distribution build container image for building the AWX package
# This is helpful if you don't want to bother installing the build-time dependencies as
# it is taken care of already.
# NOTE: IMPORTANT: If you are running a mininshift install, using this container might not work
# if you are using certain drivers like KVM where the source tree can't be mapped
# into the build container.
# Thus this setting must be set to False which will trigger a local build. To view the
# typical dependencies that you might need to install see:
# installer/image_build/files/Dockerfile.sdist
# use_container_for_build=true
2018-03-14 20:03:55 +03:00
# This will create or update a default admin (superuser) account in AWX, if not provided
# then these default values are used
2018-10-10 03:02:03 +03:00
admin_user=admin
admin_password=password
2018-03-14 20:03:55 +03:00
2018-10-24 05:13:06 +03:00
# Whether or not to create preload data for demonstration purposes
create_preload_data=True
2018-03-14 20:03:55 +03:00
# AWX Secret key
# It's *very* important that this stay the same between upgrades or you will lose the ability to decrypt
# your credentials
2018-04-12 05:53:20 +03:00
secret_key=awxsecret
2018-03-14 20:03:55 +03:00
2017-09-26 04:52:23 +03:00
# Build AWX with official logos
2019-04-10 21:49:37 +03:00
# Requires cloning awx-logos repo as a sibling of this project.
2017-09-26 04:52:23 +03:00
# Review the trademark guidelines at https://github.com/ansible/awx-logos/blob/master/TRADEMARKS.md
# awx_official=false
2017-09-13 14:56:58 +03:00
# Proxy
#http_proxy=http://proxy:3128
#https_proxy=http://proxy:3128
#no_proxy=mycorp.org
2017-11-15 00:17:04 +03:00
# Container networking configuration
# Set the awx_task and awx_web containers' search domain(s)
#awx_container_search_domains=example.com,ansible.com
2018-01-18 15:46:09 +03:00
# Alternate DNS servers
#awx_alternate_dns_servers="10.1.2.3,10.2.3.4"
2018-01-30 12:47:58 +03:00
# AWX project data folder. If you need access to the location where AWX stores the projects
# it manages from the docker host, you can set this to turn it into a volume for the container.
2018-02-27 18:52:06 +03:00
#project_data_dir=/var/lib/awx/projects
2018-03-14 13:40:56 +03:00
# CA Trust directory. If you need to provide custom CA certificates, supplying
# this variable causes this directory on the host to be bind mounted over
# /etc/pki/ca-trust in the awx_task and awx_web containers.
2019-01-05 11:07:11 +03:00
#ca_trust_dir=/etc/pki/ca-trust/source/anchors
2018-06-05 18:16:08 +03:00
# Include /etc/nginx/awx_extra.conf
# Note the use of glob pattern for nginx
# which makes include "optional" - i.e. not fail
# if file is absent
#extra_nginx_include="/etc/nginx/awx_extra[.]conf"