2017-01-30 16:59:33 +00:00
|
|
|
from os import path
|
|
|
|
|
|
|
|
# FIXME: workaround for this moment till confdir, dbdir (installdir etc.) are
|
|
|
|
# declared properly somewhere/somehow
|
|
|
|
confdir = path.abspath(path.dirname(__file__))
|
|
|
|
# use parent dir as dbdir else fallback to current dir
|
|
|
|
dbdir = path.abspath(path.join(confdir, '..')) if confdir.endswith('conf') \
|
|
|
|
else confdir
|
|
|
|
|
|
|
|
|
|
|
|
class BaseConfiguration(object):
|
|
|
|
DEBUG = False
|
|
|
|
# Make this random (used to generate session keys)
|
|
|
|
SECRET_KEY = '74d9e9f9cd40e66fc6c4c2e9987dce48df3ce98542529fd0'
|
|
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///{0}'.format(path.join(
|
|
|
|
dbdir, 'module_build_service.db'))
|
|
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = True
|
|
|
|
# Where we should run when running "manage.py runssl" directly.
|
|
|
|
HOST = '0.0.0.0'
|
|
|
|
PORT = 5000
|
|
|
|
|
|
|
|
# Global network-related values, in seconds
|
|
|
|
NET_TIMEOUT = 120
|
|
|
|
NET_RETRY_INTERVAL = 30
|
|
|
|
|
|
|
|
SYSTEM = 'koji'
|
|
|
|
MESSAGING = 'fedmsg' # or amq
|
|
|
|
MESSAGING_TOPIC_PREFIX = ['org.fedoraproject.prod']
|
|
|
|
KOJI_CONFIG = '/etc/module-build-service/koji.conf'
|
|
|
|
KOJI_PROFILE = 'koji'
|
|
|
|
KOJI_ARCHES = ['i686', 'armv7hl', 'x86_64']
|
|
|
|
KOJI_PROXYUSER = True
|
|
|
|
KOJI_REPOSITORY_URL = 'https://kojipkgs.stg.fedoraproject.org/repos'
|
|
|
|
COPR_CONFIG = '/etc/module-build-service/copr.conf'
|
|
|
|
PDC_URL = 'http://modularity.fedorainfracloud.org:8080/rest_api/v1'
|
|
|
|
PDC_INSECURE = True
|
|
|
|
PDC_DEVELOP = True
|
|
|
|
SCMURLS = ["git://pkgs.stg.fedoraproject.org/modules/"]
|
|
|
|
|
|
|
|
# How often should we resort to polling, in seconds
|
|
|
|
# Set to zero to disable polling
|
|
|
|
POLLING_INTERVAL = 600
|
|
|
|
|
|
|
|
# Determines how many builds that can be submitted to the builder
|
|
|
|
# and be in the build state at a time. Set this to 0 for no restrictions
|
|
|
|
NUM_CONSECUTIVE_BUILDS = 5
|
|
|
|
|
|
|
|
RPMS_DEFAULT_REPOSITORY = 'git://pkgs.fedoraproject.org/rpms/'
|
|
|
|
RPMS_ALLOW_REPOSITORY = False
|
|
|
|
RPMS_DEFAULT_CACHE = 'http://pkgs.fedoraproject.org/repo/pkgs/'
|
|
|
|
RPMS_ALLOW_CACHE = False
|
|
|
|
|
|
|
|
# Available backends are: console, file, journal.
|
|
|
|
LOG_BACKEND = 'journal'
|
|
|
|
|
|
|
|
# Path to log file when LOG_BACKEND is set to "file".
|
|
|
|
LOG_FILE = 'module_build_service.log'
|
|
|
|
|
|
|
|
# Available log levels are: debug, info, warn, error.
|
|
|
|
LOG_LEVEL = 'info'
|
|
|
|
|
|
|
|
# Settings for Kerberos
|
|
|
|
KRB_KEYTAB = None
|
|
|
|
KRB_PRINCIPAL = None
|
|
|
|
KRB_CCACHE = None
|
|
|
|
|
|
|
|
# AMQ prefixed variables are required only while using 'amq' as messaging backend
|
|
|
|
# Addresses to listen to
|
|
|
|
AMQ_RECV_ADDRESSES = ['amqps://messaging.mydomain.com/Consumer.m8y.VirtualTopic.eng.koji',
|
|
|
|
'amqps://messaging.mydomain.com/Consumer.m8y.VirtualTopic.eng.module_build_service']
|
|
|
|
# Address for sending messages
|
|
|
|
AMQ_DEST_ADDRESS = 'amqps://messaging.mydomain.com/Consumer.m8y.VirtualTopic.eng.module_build_service'
|
|
|
|
AMQ_CERT_FILE = '/etc/module_build_service/msg-m8y-client.crt'
|
|
|
|
AMQ_PRIVATE_KEY_FILE = '/etc/module_build_service/msg-m8y-client.key'
|
|
|
|
AMQ_TRUSTED_CERT_FILE = '/etc/module_build_service/Root-CA.crt'
|
|
|
|
|
|
|
|
|
|
|
|
class ProdConfiguration(BaseConfiguration):
|
|
|
|
DEBUG = False # Don't turn this on.
|
|
|
|
|
2017-01-30 18:23:55 +00:00
|
|
|
{% if env == 'staging' %}
|
2017-01-30 16:59:33 +00:00
|
|
|
SECRET_KEY = '{{ mbs_stg_secret_key }}'
|
|
|
|
SQLALCHEMY_DATABASE_URI = 'postgresql://mbs:{{mbs_stg_db_password}}@db-mbs/mbs'
|
2017-01-30 18:23:55 +00:00
|
|
|
{% else %}
|
2017-01-30 16:59:33 +00:00
|
|
|
SECRET_KEY = '{{ mbs_prod_secret_key }}'
|
|
|
|
SQLALCHEMY_DATABASE_URI = 'postgresql://mbs:{{mbs_prod_db_password}}@db-mbs/mbs'
|
2017-01-30 18:23:55 +00:00
|
|
|
{% endif %}
|
2017-01-30 16:59:33 +00:00
|
|
|
|
2017-01-30 18:23:55 +00:00
|
|
|
{% if env == 'staging' %}
|
2017-01-30 16:59:33 +00:00
|
|
|
KRB_PRINCIPAL = 'modularity@STG.FEDORAPROJECT.ORG'
|
2017-01-30 18:23:55 +00:00
|
|
|
{% else %}
|
2017-01-30 16:59:33 +00:00
|
|
|
KRB_PRINCIPAL = 'modularity@FEDORAPROJECT.ORG'
|
2017-01-30 18:23:55 +00:00
|
|
|
{% endif %}
|
2017-01-30 16:59:33 +00:00
|
|
|
|
|
|
|
KRB_KEYTAB = '/etc/krb5.mbs_mbs{{env_suffix}}.fedoraproject.org.keytab'
|
2017-02-01 16:02:28 +00:00
|
|
|
KRB_CCACHE = '/var/cache/fedmsg/mbs-krb5cc'
|
2017-01-30 16:59:33 +00:00
|
|
|
|
|
|
|
LOG_LEVEL = 'debug'
|
|
|
|
LOG_BACKEND = 'console'
|
|
|
|
|
2017-02-15 20:47:01 +00:00
|
|
|
# Yes, use tls.
|
2017-01-30 16:59:33 +00:00
|
|
|
PDC_INSECURE = False
|
2017-02-15 20:47:01 +00:00
|
|
|
# No, don't try to obtain a token (we just read. we don't write.)
|
|
|
|
PDC_DEVELOP = True
|
2017-01-30 16:59:33 +00:00
|
|
|
|
|
|
|
KOJI_CONFIG = path.join(confdir, 'koji.conf')
|
2017-01-30 18:23:55 +00:00
|
|
|
{% if env == 'staging' %}
|
2017-01-30 16:59:33 +00:00
|
|
|
KOJI_PROFILE = 'staging'
|
|
|
|
KOJI_ARCHES = ['x86_64']
|
|
|
|
KOJI_REPOSITORY_URL = 'http://kojipkgs.stg.fedoraproject.org/repos'
|
|
|
|
MESSAGING_TOPIC_PREFIX = ['org.fedoraproject.stg']
|
|
|
|
PDC_URL = 'https://pdc.stg.fedoraproject.org/rest_api/v1'
|
|
|
|
SCMURLS = ["git://pkgs.stg.fedoraproject.org/modules/"]
|
2017-01-30 18:23:55 +00:00
|
|
|
{% else %}
|
2017-01-30 16:59:33 +00:00
|
|
|
KOJI_PROFILE = 'production'
|
2017-01-30 17:06:41 +00:00
|
|
|
KOJI_ARCHES = ['aarch64', 'armv7hl', 'i686', 'ppc64', 'ppc64le', 'x86_64']
|
2017-01-30 16:59:33 +00:00
|
|
|
KOJI_REPOSITORY_URL = 'http://kojipkgs.fedoraproject.org/repos'
|
|
|
|
MESSAGING_TOPIC_PREFIX = ['org.fedoraproject.prod']
|
|
|
|
PDC_URL = 'https://pdc.fedoraproject.org/rest_api/v1'
|
|
|
|
SCMURLS = ["git://pkgs.fedoraproject.org/modules/"]
|
2017-01-30 18:23:55 +00:00
|
|
|
{% endif %}
|
2017-02-09 19:44:48 +00:00
|
|
|
|
|
|
|
# These aren't really secret.
|
|
|
|
OIDC_CLIENT_SECRETS = path.join(confdir, 'client_secrets.json')
|