JiraΒΆ
Robusta can open Jira tickets automatically, based on the issues and events in your Kubernetes cluster.
To configure the Jira destination you need to have following:
PrerequisitesΒΆ
url
: The url of your workspace. For example: https://workspace.atlassian.net (Note: schema (https) is required)username
: The email you use to log into your Jira account. Eg: jira-user@company.comapi_key
: Follow these instructions to get your api key.project_name
: Project you want the Jira tickets to be created in. Go to Project Settings -> Details -> Name.
Note
The configured user should have the following permissions:
write:jira-work
,read:jira-work
Optional SettingsΒΆ
issue_type
: [Optional - default:Task
] Jira ticket typededups
: [Optional - default:fingerprint
] Tickets deduplication parameter. By default, Only one issue perfingerprint
will be created. There can be more than one value to use. Possible values are: fingerprint, cluster_name, title, node, type, source, namespace, creation_date etcproject_type_id_override
: [Optional - default: None] If available, will override theproject_name
configuration. Follow these instructions to get your project id.issue_type_id_override
: [Optional - default: None] If available, will override theissue_type
configuration. Follow these instructions to get your issue id.
Configuring the Jira sinkΒΆ
CPUThrottlingHigh
and KubePodCrashLooping
Prometheus alerts.Add this to your generated_values.yaml
sinksConfig:
- jira_sink:
name: personal_jira_sink
url: https://workspace.atlassian.net
username: username
api_key: api_key
dedups: (OPTIONAL)
- fingerprint
project_name: project_name
match:
identifier: "(CPUThrottlingHigh|KubePodCrashLooping)"
Save the file and run
helm upgrade robusta robusta/robusta --values=generated_values.yaml
Try the example below to recieve an alert notification in Jira.
Test your Jira Prometheus IntegrationΒΆ
The command below creates a crashing pod which triggers the KubePodCrashLooping
alert. This will cause a Jira ticket to be opened when using the above example.
kubectl apply -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/crashpod/broken.yaml
Note
If creating issues by
project_name
orissue_type
fails, try specifying the corresponding ids usingproject_type_id_override
andissue_type_id_override
. Check Optional Settings above for details.