Add Python Jira module to requirements

The Jira module is now available in global-requirements:
https://review.openstack.org/#/c/562151/

Since the Jira module is now loaded by default, it always
needs to be installed. If a future change prevents loading
of the Jira module unless the Jira plugin is enabled then
this change can be reverted.

Change-Id: I3fea82e681cd49aab5cd6afc29c60302af7b63b7
Story: 2005400
Task: 30394
This commit is contained in:
Doug Szumski 2019-04-08 15:57:16 +01:00
parent 8db26df094
commit 77328b74f4
4 changed files with 2 additions and 7 deletions

View File

@ -7,7 +7,7 @@ ARG CONSTRAINTS_BRANCH=master
ARG COMMON_VERSION=master
# Extra Python3 dependencies.
ARG EXTRA_DEPS="netaddr gevent==1.3.5 greenlet jira"
ARG EXTRA_DEPS="netaddr gevent==1.3.5 greenlet"
# Always start from `monasca-base` image and use specific tag of it.
ARG BASE_TAG=master

View File

@ -37,11 +37,6 @@ from monasca_notification.plugins.abstract_notifier import AbstractNotifier
notification.address = https://<jira_url>/?project=<project_name>
Dependency for Jira
1) Jira plugin requires Jira library. Consumers need to install
JIRA via pip
2) (i.e) pip install jira
Jira Configuration
1) jira:
user: username

View File

@ -11,3 +11,4 @@ six>=1.10.0 # MIT
monasca-common>=2.7.0 # Apache-2.0
oslo.config>=5.2.0 # Apache-2.0
oslo.log>=3.36.0 # Apache-2.0
jira>=1.0.3 # BSD License (2 clause)

View File

@ -41,5 +41,4 @@ universal = 1
[extras]
jira_plugin =
jira>=1.0.3
Jinja2>=2.10 # BSD License (3 clause)