mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-01 05:51:56 +08:00
Signed-off-by: David Kirwan <dkirwan@redhat.com> Signed-off-by: Akashdeep Dhar <akashdeep.dhar@gmail.com>
94 lines
2.4 KiB
Python
94 lines
2.4 KiB
Python
"""
|
|
mdapi
|
|
Copyright (C) 2015-2022 Red Hat, Inc.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
Any Red Hat trademarks that are incorporated in the source
|
|
code or documentation are not subject to the GNU General Public
|
|
License and may only be used or replicated with the express permission
|
|
of Red Hat, Inc.
|
|
"""
|
|
|
|
"""
|
|
mdapi default configuration.
|
|
"""
|
|
|
|
# url to the database server:
|
|
DB_FOLDER = "/var/tmp"
|
|
|
|
LOGGING = {
|
|
"version": 1,
|
|
"disable_existing_loggers": False,
|
|
"formatters": {
|
|
"standard": {
|
|
"format": "%(asctime)s [%(levelname)s] %(message)s",
|
|
"datefmt": "[%Y-%m-%d %I:%M:%S %z]",
|
|
},
|
|
},
|
|
"handlers": {
|
|
"console": {
|
|
"level": "INFO",
|
|
"formatter": "standard",
|
|
"class": "logging.StreamHandler",
|
|
"stream": "ext://sys.stdout",
|
|
},
|
|
},
|
|
# The root logger configuration; this is a catch-all configuration
|
|
# that applies to all log messages not handled by a different logger
|
|
"root": {
|
|
"level": "INFO",
|
|
"handlers": ["console"],
|
|
},
|
|
}
|
|
|
|
"""
|
|
Database fetching configuration
|
|
"""
|
|
|
|
KOJI_REPO = "https://kojipkgs.fedoraproject.org/repos"
|
|
PKGDB2_URL = "https://admin.fedoraproject.org/pkgdb"
|
|
DL_SERVER = "https://dl.fedoraproject.org"
|
|
|
|
# Enforce, or not, checking the SSL certs
|
|
PKGDB2_VERIFY = True
|
|
|
|
# Valid for both koji and the download server
|
|
DL_VERIFY = True
|
|
|
|
# Whether to publish to Fedora Messaging
|
|
{% if env == "staging" %}
|
|
PUBLISH_CHANGES = False
|
|
{% else %}
|
|
PUBLISH_CHANGES = True
|
|
{% endif %}
|
|
|
|
# How long to wait between retries if processing failed
|
|
CRON_SLEEP = 30
|
|
|
|
repomd_xml_namespace = {
|
|
"repo": "http://linux.duke.edu/metadata/repo",
|
|
"rpm": "http://linux.duke.edu/metadata/rpm",
|
|
}
|
|
|
|
"""
|
|
Application service configuration
|
|
"""
|
|
|
|
APPSERVE = {
|
|
"logging": {"level": LOGGING["root"]["level"]},
|
|
"bind": "0.0.0.0:8080",
|
|
"worker_class": "aiohttp.GunicornUVLoopWebWorker",
|
|
}
|