Overview
Backline integrates with Bitbucket Data Center (self-hosted) to automatically create pull requests that remediate known vulnerabilities in your on-prem repositories. A lightweight Backline agent runs inside your network and handles all communication using outbound-only connections — no inbound firewall rules are required.Looking for Bitbucket Cloud? See the Bitbucket Cloud integration instead.
What You Can Do
With the Bitbucket Data Center integration, Backline can:- Access repositories within a Bitbucket Data Center project
- Analyze code dependencies and identify vulnerabilities
- Create pull requests with automated security fixes
- Post review comments with detailed remediation guidance
- Monitor CI/CD status on pull requests
- Track remediation status across your repositories
Prerequisites
Before connecting Bitbucket Data Center, ensure you have:- A Bitbucket Data Center instance accessible over your internal network
- The Backline Helm chart already installed in your Kubernetes cluster
- A Bitbucket user with project and repository read/write access
- An HTTP access token for that user
Network Requirements
The Backline on-prem agent requires the following network access:| Direction | Destination | Port | Protocol | Purpose |
|---|---|---|---|---|
| Outbound | adapter.backline.ai | 443 | HTTPS | Communication with Backline cloud |
| Outbound | Your Bitbucket Data Center server | 443 or 7990 | HTTPS | Git API operations |
| Inbound | None | — | — | No inbound connections required |
Enabling On-Prem Git Support
Bitbucket Data Center requires an additional component in your Backline deployment that handles communication with your git server. Enable it by upgrading your existing Backline release:Creating an HTTP Access Token
Backline needs a user account with access to the project you want to manage, and an HTTP access token for authentication.Grant Project Permissions
Ensure the user has the following project-level permissions:
- Project read — to list and access repositories
- Repository write — to create branches and push changes
Connecting Bitbucket Data Center
Enter Connection Details
Fill in the connection form:
- Server URL — The base URL of your Bitbucket Data Center instance (e.g.,
https://bitbucket.company.com) - Username — The Bitbucket username
- Access Token — The HTTP access token created in the previous step
- Project Key — The Bitbucket project key containing your repositories (e.g.,
PROJ)
After Connection
Once connected, Backline will be able to access repositories in the specified project. When vulnerabilities are detected by your connected security scanners, Backline can generate remediation plans and create pull requests with fixes for those repositories.Known Limitations
- CI Job Logs — Bitbucket Data Center does not store CI/CD job logs natively (logs reside in external CI systems like Bamboo or Jenkins). Backline can still monitor CI status and identify failed jobs, but individual job log retrieval is not available.
- PR Branch Alignment — Automatic merging of the target branch into a PR’s source branch is not supported. Bitbucket Data Center does not provide a REST API for this operation.
Managing the Integration
Testing Connections
To verify that a connection is still valid:- Open the integration details by clicking Configure on the Bitbucket Data Center integration card
- Click the three dots menu on the connection
- Select Test Connection to validate connectivity and credentials
Upgrading the On-Prem Agent
Troubleshooting
On-prem git pod is in CrashLoopBackOff
On-prem git pod is in CrashLoopBackOff
- Verify
gitproxy.enabledis set and theaccessKeyis configured: - View the pod logs for specific error messages:
Test Connection fails
Test Connection fails
- Verify the on-prem agent is running:
kubectl get pods -n backline -l app=gitproxy - Test outbound connectivity to Backline cloud from the agent:
- Confirm the Server URL is correct and reachable from the agent’s network
- Check that the Username and Access Token are valid
- Ensure the user has access to the specified Project Key
Pull requests are not being created
Pull requests are not being created
- Verify the user has repository write permissions
- Check that the repository is within the configured project
- Review the on-prem agent logs:
kubectl logs -n backline -l app=gitproxy --tail=200
Connection was working but stopped
Connection was working but stopped
- Check that the on-prem agent is still running
- Verify the HTTP access token has not expired
- Confirm no network changes have blocked outbound connectivity to
adapter.backline.ai