- Monitor your software release pipeline in real-time. Receive up-to-date notifications within PagerDuty about the progress of your builds throughout the various stages in your continuous integration and continuous deployment pipeline.
- Respond quickly to build failures. Receive actionable, granular information about a particular pipeline step, including its status, name, type, and other details to respond quickly to builds that are failing or taking too long to complete
- JFrog Pipeline will send notifications by calling PagerDuty’s Events API.
- PagerDuty users will be able to register the JFrog Pipeline integration application within their developer platform and set up the event integration. Once the setup is complete, JFrog Pipelines will use the Events API to push notifications containing build status information.
- PagerDuty integration requires an admin base role for account authorization. If you do not have this role, please reach out to an Admin or Account Owner within your organization to configure the integration.
- JFrog Platform with Pipelines installed with a PagerDuty Pipelines Integration configured.
If you need help with this integration, please contact [email protected]
Add JFrog Pipelines integration to an existing PagerDuty service or create a new service by following the steps below
- From the Configuration menu, select Services.
- There are two ways to add an integration to a service:
- If you are adding your integration to an existing service: Click the name of the service you want to add the integration to. Then, select the Integrations tab and click the New Integration button.
- If you are creating a new service for your integration: Please read our documentation in section Configuring Services and Integrations and follow the steps outlined in the Create a New Service section, selecting JFrog Pipelines Changes as the Integration Type in step 4. Continue with the In JFrog Pipelines Setup section (below) once you have finished these steps.
- Enter an Integration Name in the format
JFrog
and select JFrog Pipelines + PagerDuty Notifications from the Integration Type menu. - Click the Add Integration button to save your new integration. You will be redirected to the Integrations tab for your service.
- An Integration Key will be on this screen. This is the key that is called
service integration/routing key
when configuring the UI in pipelines. This confusion is inherited from the inconsistencies in the PagerDuty api docs
- Open your JFrog Platform with Pipelines and click on the
Adminstration gears
in the left menu. Click on thePipelines
menu item and then click on the sub-tabIntegrations
. - Click the
+ Add an Integration
link on the top right. - Select
PagerDuty Events
for the integration type - Enter a name for this integration which will be used in the pipeline yaml. ex:
MyPagerDutyIntegration
- Enter the Pagerduty
Integration Key
created in prior steps. - Click Create
- Create a new git repository or use an existing repository to save a new file
pipeline.yaml
- Create a new Pipelines integration for your SCM provider. Visit the official documentation.
- Create a new pipeline YAML definition that uses the new PagerDuty Events integration above to send build notifications to PagerDuty.
- Replace
<MyPagerDutyIntegration>
with the name of the Pipelines integration for Pagerduty
resources:
- name: pagerDutyGitRepo
type: GitRepo
configuration:
gitProvider: MyGithubIntegration
path: jfrog/jfrog-pipelines-example
pipelines:
- name: pipeline_pagerduty_example
steps:
- name: pagerduty_example_step
type: Bash
configuration:
integrations:
- name: <MyPagerDutyIntegration>
inputResources:
- name: pagerDutyGitRepo
execution:
onExecute:
- send_notification <MyPagerDutyIntegration> --text "<Your message>"
Commit the pipeline yaml to your SCM provider and then follow the official steps on adding a pipeline.
- Click the JFrog Pipeline tab
My Pipelines
. - Select the Pipeline you have synced .
- Click the Pipeline tile and click the
Trigger this step
button.
Or follow the official steps on all the ways of how to trigger a JFrog pipelines.
- Find the integration to delete by navigating to Services and selecting Service Directory.
- Select the service with your integration and navigate to Integrations tab.
- Navigate to the integration by clicking on the integration name (JFrog Pipelines + PagerDuty Notifications).
- Click the Delete Integration button on the top right corner.
- Remove any PagerDuty Pipelines in the
Pipelines Sources
tab of JFrog Pipelines by clicking theDelete
button shown below..