mirror of
https://github.com/ansible/awx.git
synced 2026-05-17 22:37:41 -02:30
Move installer roles into roles directory
Signed-off-by: Shane McDonald <me@shanemcd.com>
This commit is contained in:
102
installer/roles/openshift/templates/configmap.yml.j2
Normal file
102
installer/roles/openshift/templates/configmap.yml.j2
Normal file
@@ -0,0 +1,102 @@
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: awx-config
|
||||
namespace: {{ awx_openshift_project }}
|
||||
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',
|
||||
},
|
||||
}
|
||||
159
installer/roles/openshift/templates/deployment.yml.j2
Normal file
159
installer/roles/openshift/templates/deployment.yml.j2
Normal file
@@ -0,0 +1,159 @@
|
||||
---
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: awx
|
||||
namespace: {{ awx_openshift_project }}
|
||||
spec:
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
name: awx-web-deploy
|
||||
service: django
|
||||
spec:
|
||||
containers:
|
||||
- name: awx-web
|
||||
image: {{ awx_web_openshift_image }}
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- containerPort: 8052
|
||||
volumeMounts:
|
||||
- mountPath: /etc/tower
|
||||
name: awx-application-config
|
||||
resources:
|
||||
requests:
|
||||
memory: "{{ awx_web_mem_request }}Gi"
|
||||
cpu: "{{ awx_web_cpu_request }}m"
|
||||
- name: awx-celery
|
||||
image: {{ awx_task_openshift_image }}
|
||||
imagePullPolicy: Always
|
||||
volumeMounts:
|
||||
- mountPath: /etc/tower
|
||||
name: awx-application-config
|
||||
env:
|
||||
- name: DATABASE_USER
|
||||
value: {{ pg_username }}
|
||||
- name: DATABASE_NAME
|
||||
value: {{ pg_database }}
|
||||
- name: DATABASE_HOST
|
||||
value: {{ pg_hostname|default('postgresql') }}
|
||||
- name: DATABASE_PORT
|
||||
value: "{{ pg_port|default('5432') }}"
|
||||
- name: DATABASE_PASSWORD
|
||||
value: {{ pg_password }}
|
||||
- name: MEMCACHED_HOST
|
||||
value: {{ memcached_hostname|default('localhost') }}
|
||||
- name: RABBITMQ_HOST
|
||||
value: {{ rabbitmq_hostname|default('localhost') }}
|
||||
- name: AWX_ADMIN_USER
|
||||
value: {{ default_admin_user|default('admin') }}
|
||||
- name: AWX_ADMIN_PASSWORD
|
||||
value: {{ default_admin_password|default('password') }}
|
||||
resources:
|
||||
requests:
|
||||
memory: "{{ awx_task_mem_request }}Gi"
|
||||
cpu: "{{ awx_task_cpu_request }}m"
|
||||
- name: awx-rabbit
|
||||
image: ansible/awx_rabbitmq:{{ rabbitmq_version }}
|
||||
imagePullPolicy: Always
|
||||
env:
|
||||
# For consupmption by rabbitmq-env.conf
|
||||
- name: MY_POD_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.podIP
|
||||
- name: RABBITMQ_USE_LONGNAME
|
||||
value: "true"
|
||||
- name: RABBITMQ_ERLANG_COOKIE
|
||||
value: "cookiemonster"
|
||||
- name: RABBITMQ_NODENAME
|
||||
value: "rabbit@$(MY_POD_IP)"
|
||||
- name: AUTOCLUSTER_TYPE
|
||||
value: "etcd"
|
||||
- name: AUTOCLUSTER_DELAY
|
||||
value: "60"
|
||||
- name: ETCD_HOST
|
||||
value: "etcd"
|
||||
- name: AUTOCLUSTER_CLEANUP
|
||||
value: "true"
|
||||
- name: CLEANUP_WARN_ONLY
|
||||
value: "false"
|
||||
- name: CLEANUP_INTERVAL
|
||||
value: "30"
|
||||
- name: RABBITMQ_DEFAULT_USER
|
||||
value: "awx"
|
||||
- name: RABBITMQ_DEFAULT_PASS
|
||||
value: "abcdefg"
|
||||
- name: RABBITMQ_DEFAULT_VHOST
|
||||
value: "awx"
|
||||
- name: RABBITMQ_CONFIG_FILE
|
||||
value: "/etc/rabbitmq/rabbitmq"
|
||||
resources:
|
||||
requests:
|
||||
memory: "{{ awx_rabbitmq_mem_request }}Gi"
|
||||
cpu: "{{ awx_rabbitmq_cpu_request }}m"
|
||||
- name: awx-memcached
|
||||
image: memcached
|
||||
resources:
|
||||
requests:
|
||||
memory: "{{ awx_memcached_mem_request }}Gi"
|
||||
cpu: "{{ awx_memcached_cpu_request }}m"
|
||||
volumes:
|
||||
- name: awx-application-config
|
||||
configMap:
|
||||
name: awx-config
|
||||
items:
|
||||
- key: awx_settings
|
||||
path: settings.py
|
||||
- key: secret_key
|
||||
path: SECRET_KEY
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: awx-web-svc
|
||||
namespace: {{ awx_openshift_project }}
|
||||
labels:
|
||||
name: awx-web-svc
|
||||
spec:
|
||||
type: "NodePort"
|
||||
ports:
|
||||
- name: http
|
||||
port: 8052
|
||||
selector:
|
||||
name: awx-web-deploy
|
||||
---
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: awx-rmq-mgmt
|
||||
namespace: {{ awx_openshift_project }}
|
||||
labels:
|
||||
name: awx-rmq-mgmt
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- name: rmqmgmt
|
||||
port: 15672
|
||||
targetPort: 15672
|
||||
selector:
|
||||
name: awx-web-deploy
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Route
|
||||
metadata:
|
||||
name: awx-web-svc
|
||||
namespace: {{ awx_openshift_project }}
|
||||
spec:
|
||||
port:
|
||||
targetPort: http
|
||||
tls:
|
||||
insecureEdgeTerminationPolicy: Allow
|
||||
termination: edge
|
||||
to:
|
||||
kind: Service
|
||||
name: awx-web-svc
|
||||
weight: 100
|
||||
wildcardPolicy: None
|
||||
44
installer/roles/openshift/templates/etcd.yml.j2
Normal file
44
installer/roles/openshift/templates/etcd.yml.j2
Normal file
@@ -0,0 +1,44 @@
|
||||
---
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: etcd
|
||||
namespace: {{ awx_openshift_project }}
|
||||
spec:
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
name: awx-etcd2
|
||||
service: etcd
|
||||
spec:
|
||||
containers:
|
||||
- name: etcd
|
||||
image: elcolio/etcd:latest
|
||||
ports:
|
||||
- containerPort: 4001
|
||||
volumeMounts:
|
||||
- mountPath: /data
|
||||
name: datadir
|
||||
volumes:
|
||||
- name: datadir
|
||||
emptyDir: {}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
labels:
|
||||
name: awx-etcd
|
||||
name: etcd
|
||||
namespace: {{ awx_openshift_project }}
|
||||
spec:
|
||||
ports:
|
||||
- name: etcd
|
||||
port: 4001
|
||||
protocol: TCP
|
||||
targetPort: 4001
|
||||
selector:
|
||||
name: awx-etcd2
|
||||
sessionAffinity: None
|
||||
type: ClusterIP
|
||||
Reference in New Issue
Block a user