mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
84cd933702
Signed-off-by: Shane McDonald <me@shanemcd.com>
103 lines
3.8 KiB
Django/Jinja
103 lines
3.8 KiB
Django/Jinja
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: awx-config
|
|
namespace: {{ awx_kubernetes_namespace }}
|
|
data:
|
|
secret_key: {{ awx_secret_key }}
|
|
awx_settings: |
|
|
import os
|
|
import socket
|
|
ADMINS = ()
|
|
|
|
# Container environments don't like chroots
|
|
AWX_PROOT_ENABLED = False
|
|
|
|
# Automatically deprovision pods that go offline
|
|
AWX_AUTO_DEPROVISION_INSTANCES = True
|
|
|
|
SYSTEM_TASK_ABS_CPU = {{ ((awx_task_cpu_request|int / 1000) * 4)|int }}
|
|
SYSTEM_TASK_ABS_MEM = {{ ((awx_task_mem_request|int * 1024) / 100)|int }}
|
|
|
|
#Autoprovisioning should replace this
|
|
CLUSTER_HOST_ID = socket.gethostname()
|
|
SYSTEM_UUID = '00000000-0000-0000-0000-000000000000'
|
|
|
|
SESSION_COOKIE_SECURE = False
|
|
CSRF_COOKIE_SECURE = False
|
|
|
|
REMOTE_HOST_HEADERS = ['HTTP_X_FORWARDED_FOR']
|
|
|
|
STATIC_ROOT = '/var/lib/awx/public/static'
|
|
PROJECTS_ROOT = '/var/lib/awx/projects'
|
|
JOBOUTPUT_ROOT = '/var/lib/awx/job_status'
|
|
SECRET_KEY = file('/etc/tower/SECRET_KEY', 'rb').read().strip()
|
|
ALLOWED_HOSTS = ['*']
|
|
INTERNAL_API_URL = 'http://127.0.0.1:8052'
|
|
SERVER_EMAIL = 'root@localhost'
|
|
DEFAULT_FROM_EMAIL = 'webmaster@localhost'
|
|
EMAIL_SUBJECT_PREFIX = '[AWX] '
|
|
EMAIL_HOST = 'localhost'
|
|
EMAIL_PORT = 25
|
|
EMAIL_HOST_USER = ''
|
|
EMAIL_HOST_PASSWORD = ''
|
|
EMAIL_USE_TLS = False
|
|
|
|
LOGGING['handlers']['console'] = {
|
|
'()': 'logging.StreamHandler',
|
|
'level': 'DEBUG',
|
|
'formatter': 'simple',
|
|
}
|
|
|
|
LOGGING['loggers']['django.request']['handlers'] = ['console']
|
|
LOGGING['loggers']['rest_framework.request']['handlers'] = ['console']
|
|
LOGGING['loggers']['awx']['handlers'] = ['console']
|
|
LOGGING['loggers']['awx.main.commands.run_callback_receiver']['handlers'] = ['console']
|
|
LOGGING['loggers']['awx.main.commands.inventory_import']['handlers'] = ['console']
|
|
LOGGING['loggers']['awx.main.tasks']['handlers'] = ['console']
|
|
LOGGING['loggers']['awx.main.scheduler']['handlers'] = ['console']
|
|
LOGGING['loggers']['django_auth_ldap']['handlers'] = ['console']
|
|
LOGGING['loggers']['social']['handlers'] = ['console']
|
|
LOGGING['loggers']['system_tracking_migrations']['handlers'] = ['console']
|
|
LOGGING['loggers']['rbac_migrations']['handlers'] = ['console']
|
|
LOGGING['loggers']['awx.isolated.manager.playbooks']['handlers'] = ['console']
|
|
LOGGING['handlers']['callback_receiver'] = {'class': 'logging.NullHandler'}
|
|
LOGGING['handlers']['fact_receiver'] = {'class': 'logging.NullHandler'}
|
|
LOGGING['handlers']['task_system'] = {'class': 'logging.NullHandler'}
|
|
LOGGING['handlers']['tower_warnings'] = {'class': 'logging.NullHandler'}
|
|
LOGGING['handlers']['rbac_migrations'] = {'class': 'logging.NullHandler'}
|
|
LOGGING['handlers']['system_tracking_migrations'] = {'class': 'logging.NullHandler'}
|
|
LOGGING['handlers']['management_playbooks'] = {'class': 'logging.NullHandler'}
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ATOMIC_REQUESTS': True,
|
|
'ENGINE': 'django.db.backends.postgresql',
|
|
'NAME': "{{ pg_database }}",
|
|
'USER': "{{ pg_username }}",
|
|
'PASSWORD': "{{ pg_password }}",
|
|
'HOST': "{{ pg_hostname|default('postgresql') }}",
|
|
'PORT': "{{ pg_port }}",
|
|
}
|
|
}
|
|
BROKER_URL = 'amqp://{}:{}@{}:{}/{}'.format(
|
|
"awx",
|
|
"abcdefg",
|
|
"localhost",
|
|
"5672",
|
|
"awx")
|
|
CHANNEL_LAYERS = {
|
|
'default': {'BACKEND': 'asgi_amqp.AMQPChannelLayer',
|
|
'ROUTING': 'awx.main.routing.channel_routing',
|
|
'CONFIG': {'url': BROKER_URL}}
|
|
}
|
|
CACHES = {
|
|
'default': {
|
|
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
|
|
'LOCATION': '{}:{}'.format("localhost", "11211")
|
|
},
|
|
'ephemeral': {
|
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
|
},
|
|
}
|