Skip to main content
Version: Latest

Configure Google OAuth

If your organization uses G Suite for user authentication, you can configure Rancher to allow your users to log in using their G Suite credentials.

Only admins of the G Suite domain have access to the Admin SDK. Therefore, only G Suite admins can configure Google OAuth for Rancher.

Within Rancher, only administrators or users with the Manage Authentication global role can configure authentication.

Prerequisites

  • You must have a G Suite admin account configured.
  • G Suite requires a top private domain FQDN as an authorized domain. One way to get an FQDN is by creating an A-record in Route53 for your Rancher server. You do not need to update your Rancher Server URL setting with that record, because there could be clusters using that URL.
  • You must have the Admin SDK API enabled for your G Suite domain. You can enable it using the steps on this page.

After the Admin SDK API is enabled, your G Suite domain's API screen should look like this: Enable Admin APIs

Setting up G Suite for OAuth with Rancher

Before you can set up Google OAuth in Rancher, you need to log in to your G Suite account and do the following:

  1. Add Rancher as an authorized domain in G Suite
  2. Generate OAuth2 credentials for the Rancher server
  3. Create service account credentials for the Rancher server
  4. Register the service account key as an OAuth Client

1. Adding Rancher as an Authorized Domain

  1. Click here to go to credentials page of your Google domain.
  2. Select your project and click OAuth consent screen. OAuth Consent Screen
  3. Go to Authorized Domains and enter the top private domain of your Rancher server URL in the list. The top private domain is the rightmost superdomain. So for example, www.foo.co.uk a top private domain of foo.co.uk. For more information on top-level domains, refer to this article.
  4. Go to Scopes for Google APIs and make sure email, profile and openid are enabled.

Result: Rancher has been added as an authorized domain for the Admin SDK API.

2. Creating OAuth2 Credentials for the Rancher Server

  1. Go to the Google API console, select your project, and go to the credentials page.Credentials
  2. On the Create Credentials dropdown, select OAuth client ID.
  3. Click Web application.
  4. Provide a name.
  5. Fill out the Authorized JavaScript origins and Authorized redirect URIs. Note: The Rancher UI page for setting up Google OAuth (available from the Global view under Security > Authentication > Google) provides you the exact links to enter for this step.
  • Under Authorized JavaScript origins, enter your Rancher server URL.
  • Under Authorized redirect URIs, enter your Rancher server URL appended with the path verify-auth. For example, if your URI is https://rancherServer, you will enter https://rancherServer/verify-auth.
  1. Click on Create.
  2. After the credential is created, you will see a screen with a list of your credentials. Choose the credential you just created, and in that row on rightmost side, click Download JSON. Save the file so that you can provide these credentials to Rancher.

Result: Your OAuth credentials have been successfully created.

3. Creating Service Account Credentials

Since the Google Admin SDK is available only to admins, regular users cannot use it to retrieve profiles of other users or their groups. Regular users cannot even retrieve their own groups.

Since Rancher provides group-based membership access, we require the users to be able to get their own groups, and look up other users and groups when needed.

As a workaround to get this capability, G Suite recommends creating a service account and delegating authority of your G Suite domain to that service account.

This section describes how to:

  • Create a service account
  • Create a key for the service account and download the credentials as JSON
  1. Click here and select your project for which you generated OAuth credentials.
  2. Click on Create Service Account.
  3. Enter a name and click Create. Service account creation Step 1
  4. Don't provide any roles on the Service account permissions page and click ContinueService account creation Step 2
  5. Click on Create Key and select the JSON option. Download the JSON file and save it so that you can provide it as the service account credentials to Rancher. Service account creation Step 3

Result: Your service account is created.

4. Register the Service Account Key as an OAuth Client

You will need to grant some permissions to the service account you created in the last step. Rancher requires you to grant only read-only permissions for users and groups.

Using the Unique ID of the service account key, register it as an Oauth Client using the following steps:

  1. Get the Unique ID of the key you just created. If it's not displayed in the list of keys right next to the one you created, you will have to enable it. To enable it, click Unique ID and click OK. This will add a Unique ID column to the list of service account keys. Save the one listed for the service account you created. NOTE: This is a numeric key, not to be confused with the alphanumeric field Key ID.

    Service account Unique ID

  2. Go to the Domain-wide Delegation page.

  3. Add the Unique ID obtained in the previous step in the Client Name field.

  4. In the One or More API Scopes field, add the following scopes:

    openid,profile,email,https://www.googleapis.com/auth/admin.directory.user.readonly,https://www.googleapis.com/auth/admin.directory.group.readonly
  5. Click Authorize.

Result: The service account is registered as an OAuth client in your G Suite account.

Configuring Google OAuth in Rancher

  1. Sign into Rancher using a local user assigned the administrator role. This user is also called the local principal.
  2. In the top left corner, click ☰ > Users & Authentication.
  3. In the left navigation menu, click Auth Provider.
  4. Click Google. The instructions in the UI cover the steps to set up authentication with Google OAuth.
    1. Admin Email: Provide the email of an administrator account from your GSuite setup. In order to perform user and group lookups, google apis require an administrator's email in conjunction with the service account key.
    2. Domain: Provide the domain on which you have configured GSuite. Provide the exact domain and not any aliases.
    3. Nested Group Membership: Check this box to enable nested group memberships. Rancher admins can disable this at any time after configuring auth.
    • Step One is about adding Rancher as an authorized domain, which we already covered in this section.
    • For Step Two, provide the OAuth credentials JSON that you downloaded after completing this section. You can upload the file or paste the contents into the OAuth Credentials field.
    • For Step Three, provide the service account credentials JSON that downloaded at the end of this section. The credentials will only work if you successfully registered the service account key as an OAuth client in your G Suite account.
  5. Click Authenticate with Google.
  6. Click Enable.

Result: Google authentication is successfully configured.