Bitbucket Pipes
Read time: 1 minute
Last edited: Dec 02, 2020
Overview
This topic explains how to use the ld-find-code-refs
utility with Bitbucket Pipes to create code references in LaunchDarkly.
You can use the ld-find-code-refs
utility with Bitbucket Pipelines to automatically populate code references in LaunchDarkly. To do this, you must create a Pipes configuration using LaunchDarkly's code reference pipe.
Prerequisites
To set up Bitbucket Pipes, you have the following prerequisite:
- A Bitbucket Pipelines configuration file. To create one, navigate to the Pipelines section of your Bitbucket repository.
- An API access token with
writer
permissions. To learn more, read API access tokens.
Alternatively, you can give the access token access to a custom role with the code-reference-repository
resource specifier. To learn more, read Custom roles.
Setting up the Pipes configuration
To set up the Bitbucket Pipes configuration:
- Create a new Pipeline configuration in your Bitbucket repository.
- Configure the Pipeline to run on
push
using thedefault
configuration. Include the following variables:
LD_ACCESS_TOKEN
: This secured variable should be your API access token.LD_PROJ_KEY
: This should be your LaunchDarkly project key. Find it in Account settings > Projects.
Here's an example of a minimal Pipeline configuration:
You can copy and paste the following code into a blank Pipelines configuration if you have set the LD_PROJ_KEY
and LD_ACCESS_TOKEN
environment variables as repository variables:
1pipelines:2 default:3 - step:4 script:5 - pipe: launchdarkly/ld-find-code-refs-pipe:2.1.06 environment:7 LD_ACCESS_TOKEN: $LD_ACCESS_TOKEN8 LD_PROJ_KEY: $LD_PROJ_KEY
To learn more about repository variables, read Atlassian's documentation.
- Confirm that the pipeline is working by creating a new pull request with the workflow file and visiting the Pipelines page on your repository's webpage. If your pipeline fails, there may be a problem with your configuration. To investigate, check the pipeline's logs to view any error messages.
Pipeline configuration
The code reference pipe may be configured with additional environment variables to enable more functionality.
Variable | Description |
---|---|
LD_ACCESS_TOKEN | Required. A LaunchDarkly access token with writer-level access, or access to the code-references custom role resource.Supply this as a secured environment variable. |
LD_PROJ_KEY | Required. A LaunchDarkly project key. Find it in **Account settings > Projects**. |
LD_CONTEXT_LINES | Optional. The number of context lines above and below a code reference for the flag parser to send to LaunchDarkly. If < 0, no source code is sent to LaunchDarkly. If 0, only the lines containing flag references are sent. If > 0, sends that number of context lines above and below the flag reference. A maximum of 5 context lines may be provided. Defaults to 2. |
LD_BASE_URI | Optional. Set the base URL of the LaunchDarkly server for this configuration. Defaults to https://app.launchdarkly.com . |
LD_DEBUG | Optional. Enables verbose default logging. Defaults to false . |
LD_IGNORE_SERVICE_ERRORS | Optional. If enabled, the scanner terminates with exit code 0 when the LaunchDarkly API is unreachable or returns an unexpected response. Defaults to false . |
LD_LOOKBACK | Optional. Sets the number of Git commits to search in history for whether a feature flag was removed from code. Set this to 0 to disable it. Setting this option to a high value will increase search time. Defaults to 10 . |