Advertisement
Guest User

inventory

a guest
Jun 19th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.80 KB | None | 0 0
  1. localhost ansible_connection=local ansible_python_interpreter="/usr/bin/env python"
  2.  
  3. [all:vars]
  4.  
  5. # Remove these lines if you want to run a local image build
  6. # Otherwise the setup playbook will install the official Ansible images. Versions may
  7. # be selected based on: latest, 1, 1.0, 1.0.0, 1.0.0.123
  8. # by default the base will be used to search for ansible/awx_web and ansible/awx_task
  9. #dockerhub_base=ansible
  10. #dockerhub_version=latest
  11.  
  12. # Openshift Install
  13. # Will need to set -e openshift_password=developer -e docker_registry_password=$(oc whoami -t)
  14. # openshift_host=127.0.0.1:8443
  15. # openshift_project=awx
  16. # openshift_user=developer
  17. # openshift_skip_tls_verify=False
  18. # openshift_pg_emptydir=True
  19.  
  20. # Kubernetes Install
  21. # kubernetes_context=test-cluster
  22. # kubernetes_namespace=awx
  23.  
  24. # Kubernetes and Openshift Install Resource Requests
  25. # This is the request value for a pod's "task" container, which is the container
  26. # used to run jobs. The other containers have a fixed resource request. The total amount
  27. # of requested resources for a pod is the sum of all resources requested by all containers
  28. # in the pod
  29. # A cpu_request of 1500 is 1.5 cores for the task container
  30. # A mem_request of 2 is for 2 gigabytes of memory for the task container
  31. # task_cpu_request=1500
  32. # task_mem_request=2
  33.  
  34. # Common Docker parameters
  35. #postgres_data_dir=/tmp/pgdocker
  36. host_port=80
  37.  
  38. # Docker Compose Install
  39. use_docker_compose=false
  40. # The docker_compose.yml file will be created in this directory
  41. # The name of the directory (here "awx") will be the prefix of the docker containers
  42. #docker_compose_dir=/var/lib/awx
  43.  
  44. # Required for Openshift when building the image on your own
  45. # Optional for Openshift if using Dockerhub or another prebuilt registry
  46. # Required for Standalone Docker Install if building the image on your own
  47. # Optional for Standalone Docker Install if using Dockerhub or another prebuilt registry
  48. # Required for Docker Compose Install if building the image on your own
  49. # Optional for Docker Compose Install if using Dockerhub or another prebuilt registry
  50. # Define if you want the image pushed to a registry. The container definition will also use these images
  51. # docker_registry=172.30.1.1:5000
  52. # docker_registry_repository=awx
  53. # docker_registry_username=developer
  54.  
  55.  
  56. # Docker_image will not attempt to push to remote if the image already exists locally
  57. # Set this to true to delete images from docker on the build host so that they are pushed to the remote repository
  58. # docker_remove_local_images=False
  59.  
  60. # Set pg_hostname if you have an external postgres server, otherwise
  61. # a new postgres service will be created
  62. # pg_hostname=postgresql
  63. pg_username=awx
  64. pg_password=awxpass
  65. pg_database=awx
  66. pg_port=5432
  67. # Use a local distribution build container image for building the AWX package
  68. # This is helpful if you don't want to bother installing the build-time dependencies as
  69. # it is taken care of already.
  70. # NOTE: IMPORTANT: If you are running a mininshift install, using this container might not work
  71. # if you are using certain drivers like KVM where the source tree can't be mapped
  72. # into the build container.
  73. # Thus this setting must be set to False which will trigger a local build. To view the
  74. # typical dependencies that you might need to install see:
  75. # installer/image_build/files/Dockerfile.sdist
  76. # use_container_for_build=true
  77.  
  78. # This will create or update a default admin (superuser) account in AWX, if not provided
  79. # then these default values are used
  80. # default_admin_user=admin
  81. # default_admin_password=password
  82.  
  83. # AWX Secret key
  84. # It's *very* important that this stay the same between upgrades or you will lose the ability to decrypt
  85. # your credentials
  86. secret_key=awxsecret
  87.  
  88. # Build AWX with official logos
  89. # Requires cloning awx-logos repo into the project root.
  90. # Review the trademark guidelines at https://github.com/ansible/awx-logos/blob/master/TRADEMARKS.md
  91. # awx_official=false
  92.  
  93. # Proxy
  94. #http_proxy=http://proxy:3128
  95. #https_proxy=http://proxy:3128
  96. #no_proxy=mycorp.org
  97.  
  98. # Container networking configuration
  99. # Set the awx_task and awx_web containers' search domain(s)
  100. #awx_container_search_domains=example.com,ansible.com
  101. # Alternate DNS servers
  102. #awx_alternate_dns_servers="10.1.2.3,10.2.3.4"
  103.  
  104. # AWX project data folder. If you need access to the location where AWX stores the projects
  105. # it manages from the docker host, you can set this to turn it into a volume for the container.
  106. #project_data_dir=/var/lib/awx/projects
  107.  
  108. # CA Trust directory. If you need to provide custom CA certificates, supplying
  109. # this variable causes this directory on the host to be bind mounted over
  110. # /etc/pki/ca-trust in the awx_task and awx_web containers.
  111. # NOTE: only obeyed in local_docker install
  112. #ca_trust_dir=/etc/pki/ca-trust
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement