Switch blockerbugs from EL7 to FC32

This commit is contained in:
František Zatloukal 2020-08-18 10:55:07 +02:00
parent 01c3107edd
commit ff6841eff6
3 changed files with 17 additions and 18 deletions

View file

@ -2,8 +2,8 @@
nm: 255.255.255.0
gw: 10.3.163.254
dns: 10.3.163.33
ks_url: http://10.3.163.35/repo/rhel/ks/kvm-rhel-7-iad2
ks_repo: http://10.3.163.35/repo/rhel/RHEL7-x86_64/
ks_url: http://10.3.163.35/repo/rhel/ks/kvm-fedora-32-iad2
ks_repo: http://10.3.163.35/pub/fedora/linux/releases/32/Server/x86_64/os/
volgroup: /dev/vg_guests
eth0_ip: 10.3.163.88
vmhost: vmhost-x86-07.iad2.fedoraproject.org

View file

@ -1,23 +1,10 @@
---
- name: install needed packages for blockerbugs
package: state=present name={{ item }} enablerepo=epel-testing
package: state=present name={{ item }}
with_items:
- libsemanage-python
- python-psycopg2
- python-kitchen
- python-alembic
- python-flask-wtf
- python-flask
- python-sqlalchemy
- python-fedora-flask
- python-wtforms
- python-fedora
- pytest
- python-lxml
- python-flask-sqlalchemy
- python-bugzilla
- libselinux-python3
- python3-mod_wsgi
- blockerbugs
- python-bunch
# this is for chronic which helps get rid of excess cron emails
- moreutils
tags:

View file

@ -26,3 +26,15 @@ SESSION_COOKIE_SECURE = True
# enable fedmenu
FEDMENU_URL = 'https://apps.fedoraproject.org/fedmenu/'
FEDMENU_DATA_URL = 'https://apps.fedoraproject.org/js/data.js'
{% if env == "staging" %}
PAGURE_URL = "https://stg.pagure.io/"
PAGURE_API = "https://stg.pagure.io/api/0/"
{% else %}
PAGURE_URL = "https://pagure.io/"
PAGURE_API = "https://pagure.io/api/0/"
{% endif %}
PAGURE_REPO = "fedora-qa/blocker-review"
PAGURE_REPO_TOKEN = "{{ blockerbugs_pagure_repo_token }}"
PAGURE_REPO_WEBHOOK_KEY = "{{ blockerbugs_pagure_repo_webhook_key }}"
PAGURE_BOT_USERNAME = 'blockerbot'