2018-03-17 18:26:18 +05:30
---
2021-02-22 17:27:13 +05:30
stage: Create
group: Ecosystem
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2018-03-17 18:26:18 +05:30
comments: false
---
2021-04-17 20:07:23 +05:30
# GitLab integrations **(FREE)**
2019-12-26 22:10:19 +05:30
GitLab can be integrated with external services for enhanced functionality.
## Issue trackers
2021-01-03 14:25:43 +05:30
You can use an [external issue tracker ](external-issue-tracker.md ) at the same time as the GitLab
issue tracker, or use only the external issue tracker.
2019-12-26 22:10:19 +05:30
## Authentication sources
GitLab can be configured to authenticate access requests with the following authentication sources:
- Enable the [Auth0 OmniAuth ](auth0.md ) provider.
- Enable sign in with [Bitbucket ](bitbucket.md ) accounts.
- Configure GitLab to sign in using [CAS ](cas.md ).
- Integrate with [Kerberos ](kerberos.md ).
2021-01-03 14:25:43 +05:30
- Enable sign in via [LDAP ](../administration/auth/ldap/index.md ).
2019-12-26 22:10:19 +05:30
- Enable [OAuth2 provider ](oauth_provider.md ) application creation.
- Use [OmniAuth ](omniauth.md ) to enable sign in via Twitter, GitHub, GitLab.com, Google,
2021-03-11 19:13:27 +05:30
Bitbucket, Facebook, Shibboleth, SAML, Crowd, Azure, or Authentiq ID.
2019-12-26 22:10:19 +05:30
- Use GitLab as an [OpenID Connect ](openid_connect_provider.md ) identity provider.
2020-01-01 13:55:28 +05:30
- Authenticate to [Vault ](vault.md ) through GitLab OpenID Connect.
2019-12-26 22:10:19 +05:30
- Configure GitLab as a [SAML ](saml.md ) 2.0 Service Provider.
## Security enhancements
GitLab can be integrated with the following external services to enhance security:
- [Akismet ](akismet.md ) helps reduce spam.
- Google [reCAPTCHA ](recaptcha.md ) helps verify new users.
GitLab also provides features to improve the security of your own application. For more details see [GitLab Secure ](../user/application_security/index.md ).
2021-03-11 19:13:27 +05:30
## Security partners
GitLab has integrated with several security partners. For more information, see
[Security partners integration ](security_partners/index.md ).
2019-12-26 22:10:19 +05:30
## Continuous integration
GitLab can be integrated with the following external service for continuous integration:
2021-02-22 17:27:13 +05:30
- [Jenkins ](jenkins.md ) CI.
2019-12-26 22:10:19 +05:30
## Feature enhancements
GitLab can be integrated with the following enhancements:
- Add GitLab actions to [Gmail actions buttons ](gmail_action_buttons_for_gitlab.md ).
2021-02-22 17:27:13 +05:30
- Configure [PlantUML ](../administration/integration/plantuml.md )
or [Kroki ](../administration/integration/kroki.md ) to use diagrams in AsciiDoc and Markdown documents.
2019-12-26 22:10:19 +05:30
- Attach merge requests to [Trello ](trello_power_up.md ) cards.
- Enable integrated code intelligence powered by [Sourcegraph ](sourcegraph.md ).
2021-04-17 20:07:23 +05:30
- Add [Elasticsearch ](elasticsearch.md ) for [Advanced Search ](../user/search/advanced_search.md ).
2016-06-02 11:05:42 +05:30
2020-04-22 19:07:51 +05:30
## Integrations
2014-09-02 18:07:02 +05:30
2020-04-22 19:07:51 +05:30
Integration with services such as Campfire, Flowdock, HipChat, Pivotal Tracker, and Slack are available as [Integrations ](../user/project/integrations/overview.md ).
2019-12-26 22:10:19 +05:30
## Troubleshooting
2016-01-14 18:37:52 +05:30
2019-12-26 22:10:19 +05:30
### SSL certificate errors
2016-01-14 18:37:52 +05:30
2021-03-11 19:13:27 +05:30
When trying to integrate GitLab with services using self-signed certificates,
SSL certificate errors can occur in different parts of the application. Sidekiq
is a common culprit.
2016-01-14 18:37:52 +05:30
2019-12-26 22:10:19 +05:30
There are two approaches you can take to solve this:
2016-06-02 11:05:42 +05:30
1. Add the root certificate to the trusted chain of the OS.
2021-02-22 17:27:13 +05:30
1. If using Omnibus, you can add the certificate to the GitLab trusted certificates.
2016-06-02 11:05:42 +05:30
**OS main trusted chain**
2019-12-21 20:55:43 +05:30
This [resource ](https://manuals.gfi.com/en/kerio/connect/content/server-configuration/ssl-certificates/adding-trusted-root-certificates-to-the-server-1605.html )
2016-06-02 11:05:42 +05:30
has all the information you need to add a certificate to the main trusted chain.
2019-12-21 20:55:43 +05:30
This [answer ](https://superuser.com/questions/437330/how-do-you-add-a-certificate-authority-ca-to-ubuntu )
2017-08-17 22:00:37 +05:30
at Super User also has relevant information.
2016-06-02 11:05:42 +05:30
**Omnibus Trusted Chain**
2019-09-30 21:07:59 +05:30
[Install the self signed certificate or custom certificate authorities ](https://docs.gitlab.com/omnibus/common_installation_problems/README.html#using-self-signed-certificate-or-custom-certificate-authorities )
2020-05-24 23:13:21 +05:30
in to Omnibus GitLab.
2017-08-17 22:00:37 +05:30
It is enough to concatenate the certificate to the main trusted certificate
however it may be overwritten during upgrades:
2016-06-02 11:05:42 +05:30
2019-12-26 22:10:19 +05:30
```shell
2016-06-02 11:05:42 +05:30
cat jira.pem >> /opt/gitlab/embedded/ssl/certs/cacert.pem
```
After that restart GitLab with:
2019-12-26 22:10:19 +05:30
```shell
2016-06-02 11:05:42 +05:30
sudo gitlab-ctl restart
```