@axis-backstage/plugin-jira-dashboard-backend
v4.0.1
Published
A plugin that makes requests to [Atlassian REST API](https://developer.atlassian.com/server/jira/platform/rest-apis/) to get issues and project information from Jira.
Downloads
8,053
Readme
Jira Dashboard Backend
A plugin that makes requests to Atlassian REST API to get issues and project information from Jira.
The frontend plugin that displays this information is Jira Dashboard.
Setup
The following sections will help you get the Jira Dashboard Backend plugin setup and running.
Installation
Install the plugin by following the example below:
# From your Backstage root directory
yarn --cwd packages/backend add @axis-backstage/plugin-jira-dashboard-backend
Configuration
The Jira Dashboard plugin requires the following YAML to be added to your app-config.yaml:
jiraDashboard:
token: ${JIRA_TOKEN}
baseUrl: ${JIRA_BASE_URL}
headers: {} # Optional
userEmailSuffix: ${JIRA_EMAIL_SUFFIX} # Optional
annotationPrefix: ${JIRA_ANNOTATION_PREFIX} # Optional
Configuration Details:
JIRA_TOKEN
: The "Authorization" header used for Jira authentication.Note: The JIRA_TOKEN variable from Roadie's Backstage Jira plugin can not be reused here because of the added encoding in this token.
JIRA_BASE_URL
: The base url for Jira in your company, including the API version. For instance: https://jira.se.your-company.com/rest/api/2/- The headers field can be used to add HTTP headers that will be added to the API requests.
JIRA_EMAIL_SUFFIX
: Optional email suffix used for retrieving a specific Jira user in a company. For instance: @your-company.com. If not provided, the user entity profile email is used instead.JIRA_ANNOTATION_PREFIX
: Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com. If you want to configure the plugin to be compatible with Roadie's Backstage Jira Plugin, use the following annotation prefix:
jiraDashboard:
{/* required configs... */}
annotationPrefix: jira
Multiple Jira instances
In case multiple Jira instances are being used, the configuration can be written on the form:
jiraDashboard:
annotationPrefix: ${JIRA_ANNOTATION_PREFIX} # Optional
instances:
- name: default
token: ${JIRA_TOKEN}
baseUrl: ${JIRA_BASE_URL}
headers: {} # Optional
userEmailSuffix: ${JIRA_EMAIL_SUFFIX} # Optional
- name: separate-jira-instance
token: ${JIRA_TOKEN_SEPARATE}
baseUrl: ${JIRA_BASE_URL_SEPARATE}
headers: {} # Optional
userEmailSuffix: ${JIRA_EMAIL_SUFFIX_SEPARATE} # Optional
In entity yamls that don't specify an instance, the one called "default"
will be used. To specify another instace, prefix the project key with instance-name/
such as:
metadata:
annotations:
jira.com/project-key: separate-jira-instance/my-project-key
Authentication examples and trouble shooting
Either "Basic Auth" or "Personal Acccess Tokens" can be used.
This plugin will directly take the content of the "jiraDashboard.token" config string and use as the "Authorization" header in all Jira REST API calls.
Basic Auth example
To use "Basic Auth" for authentication you need to create the "Authentication" header. See the Jira documentation how to create and encode the token. This is the how to use the example token from the documentation (ZnJlZDpmcmVk
) with curl
.
curl -D- \
-X GET \
-H "Authorization: Basic ZnJlZDpmcmVk" \
-H "Content-Type: application/json" \
"https://your-domain.atlassian.net/rest/api/2/project/BS"
This would result in the following Backstage configuration:
jiraDashboard:
token: Basic ZnJlZDpmcmVk
baseUrl: https://your-domain.atlassian.net/rest/api/2/
userEmailSuffix: ${JIRA_EMAIL_SUFFIX}
Personal Acccess Tokens example
See the Personal Acccess Tokens documentation how to use and create
a PAT. The generated token can be directly used, there is no need to encode it. Using
curl
with a PAT.
curl -D- \
-X GET \
-H "Authorization: Bearer <Token>" \
-H "Content-Type: application/json" \
"https://your-domain.atlassian.net/rest/api/2/project/BS"
And the corresponding Backstage configuration:
jiraDashboard:
token: Bearer <Token>
baseUrl: https://your-domain.atlassian.net/rest/api/2/
userEmailSuffix: ${JIRA_EMAIL_SUFFIX}
Integrating
The Jira Dashboard backend plugin has support for the new backend system. Here is how you can set it up:
In your packages/backend/src/index.ts
make the following changes:
const backend = createBackend();
+ backend.add(import('@axis-backstage/plugin-jira-dashboard-backend'));
// ... other feature additions
backend.start();