debian-mirror-gitlab/doc/integration/google.md

129 lines
4.6 KiB
Markdown
Raw Normal View History

2021-01-29 00:20:46 +05:30
---
2021-10-27 15:23:28 +05:30
stage: Ecosystem
group: Integrations
2021-02-22 17:27:13 +05:30
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
2021-01-29 00:20:46 +05:30
---
2021-11-18 22:05:49 +05:30
# Google OAuth 2.0 OmniAuth Provider **(FREE SELF)**
2014-09-02 18:07:02 +05:30
2021-11-11 11:23:49 +05:30
To enable the Google OAuth 2.0 OmniAuth provider you must register your application
2021-02-22 17:27:13 +05:30
with Google. Google generates a client ID and secret key for you to use.
2018-03-17 18:26:18 +05:30
2021-11-11 11:23:49 +05:30
## Enable Google OAuth
2018-03-17 18:26:18 +05:30
In Google's side:
1. Navigate to the [cloud resource manager](https://console.cloud.google.com/cloud-resource-manager) page
1. Select **Create Project**
1. Provide the project information:
2019-09-30 21:07:59 +05:30
- **Project name** - "GitLab" works just fine here.
- **Project ID** - Must be unique to all Google Developer registered applications.
Google provides a randomly generated Project ID by default. You can use
the randomly generated ID or choose a new one.
2018-03-17 18:26:18 +05:30
1. Refresh the page and you should see your new project in the list
1. Go to the [Google API Console](https://console.developers.google.com/apis/dashboard)
2019-12-21 20:55:43 +05:30
1. Select the previously created project in the upper left corner
2018-03-17 18:26:18 +05:30
1. Select **Credentials** from the sidebar
1. Select **OAuth consent screen** and fill the form with the required information
1. In the **Credentials** tab, select **Create credentials > OAuth client ID**
1. Fill in the required information
2019-09-30 21:07:59 +05:30
- **Application type** - Choose "Web Application"
- **Name** - Use the default one or provide your own
- **Authorized JavaScript origins** -This isn't really used by GitLab but go
ahead and put `https://gitlab.example.com`
- **Authorized redirect URIs** - Enter your domain name followed by the
callback URIs one at a time:
2020-04-22 19:07:51 +05:30
```plaintext
2019-09-30 21:07:59 +05:30
https://gitlab.example.com/users/auth/google_oauth2/callback
https://gitlab.example.com/-/google_api/auth/callback
```
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
1. You should now be able to see a Client ID and Client secret. Note them down
2021-02-22 17:27:13 +05:30
or keep this page open as you need them later.
2021-11-18 22:05:49 +05:30
1. To enable projects to access [Google Kubernetes Engine](../user/infrastructure/clusters/index.md), you must also
2018-11-08 19:23:39 +05:30
enable these APIs:
- Google Kubernetes Engine API
- Cloud Resource Manager API
- Cloud Billing API
2014-09-02 18:07:02 +05:30
2021-11-11 11:23:49 +05:30
To do so you should:
2019-12-21 20:55:43 +05:30
1. Go to the [Google API Console](https://console.developers.google.com/apis/dashboard).
1. Click on **ENABLE APIS AND SERVICES** button at the top of the page.
1. Find each of the above APIs. On the page for the API, press the **ENABLE** button.
It may take a few minutes for the API to be fully functional.
2018-03-17 18:26:18 +05:30
On your GitLab server:
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
1. Open the configuration file.
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
For Omnibus GitLab:
2015-04-26 12:48:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
sudo editor /etc/gitlab/gitlab.rb
```
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
For installations from source:
2014-09-02 18:07:02 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
cd /home/git/gitlab
sudo -u git -H editor config/gitlab.yml
```
2014-09-02 18:07:02 +05:30
2021-12-11 22:18:48 +05:30
1. See [Configure initial settings](omniauth.md#configure-initial-settings) for initial settings.
2018-03-17 18:26:18 +05:30
1. Add the provider configuration:
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
For Omnibus GitLab:
2015-04-26 12:48:37 +05:30
2019-09-30 21:07:59 +05:30
```ruby
gitlab_rails['omniauth_providers'] = [
{
2022-01-26 12:08:38 +05:30
name: "google_oauth2",
# label: "Provider name", # optional label for login button, defaults to "Google"
app_id: "YOUR_APP_ID",
app_secret: "YOUR_APP_SECRET",
args: { access_type: "offline", approval_prompt: "" }
2019-09-30 21:07:59 +05:30
}
]
```
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
For installations from source:
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
```yaml
2021-01-03 14:25:43 +05:30
- { name: 'google_oauth2',
2022-01-26 12:08:38 +05:30
# label: 'Provider name', # optional label for login button, defaults to "Google"
2021-01-03 14:25:43 +05:30
app_id: 'YOUR_APP_ID',
app_secret: 'YOUR_APP_SECRET',
args: { access_type: 'offline', approval_prompt: '' } }
2019-09-30 21:07:59 +05:30
```
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
1. Change `YOUR_APP_ID` to the client ID from the Google Developer page
1. Similarly, change `YOUR_APP_SECRET` to the client secret
2021-11-11 11:23:49 +05:30
1. Make sure that you configure GitLab to use a fully-qualified domain name, as
Google doesn't accept raw IP addresses.
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
For Omnibus packages:
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
```ruby
external_url 'https://gitlab.example.com'
```
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
For installations from source:
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
```yaml
gitlab:
host: https://gitlab.example.com
```
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
1. Save the configuration file.
2021-11-11 11:23:49 +05:30
1. [Reconfigure](../administration/restart_gitlab.md#omnibus-gitlab-reconfigure)
or [restart GitLab](../administration/restart_gitlab.md#installations-from-source) for
the changes to take effect if you installed GitLab via Omnibus or from source
respectively.
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
On the sign in page there should now be a Google icon below the regular sign in
2021-02-22 17:27:13 +05:30
form. Click the icon to begin the authentication process. Google asks the
2018-03-17 18:26:18 +05:30
user to sign in and authorize the GitLab application. If everything goes well
2021-02-22 17:27:13 +05:30
the user is returned to GitLab and is signed in.