# Configure Single Sign-On (SSO)

For standalone user related configuration, see [Create local users](https://docs.kloudfuse.com/platform/3.5.0/install-add-users/).

For integrating with Google Auth, see [Configure Google OAuth2 Authentication](https://docs.kloudfuse.com/platform/3.5.0/sso-google/).

For integrating with OKTA, see [Configure Okta authentication](https://docs.kloudfuse.com/platform/3.5.0/sso-okta/).

## Customize the signin page

The signin page of your Kloudfuse cluster has the following default configuration in the `extraArgs` section of the `custom-values.yaml` file:

```yaml
     extraArgs:
       # provider-display-name: default based on provider used
       footer: "-"   # No footer
       custom-sign-in-logo: "-"    # No Logo
```

To customize the signin message on your Kloudfuse cluster, follow these steps:

1. Edit the `extraArgs` section of the `custom-values.yaml` file by adding the planned customizations.

See the [OAuth2 Proxy](https://oauth2-proxy.github.io/oauth2-proxy/configuration/overview#environment-variables) documentation to choose the relevant options.

```yaml
    kfuse-auth:
      oauth2-proxy:
        config:
          ...
        extraArgs:
          provider-display-name: "Customer Provider"
          custom-sign-in-logo: "https://framerusercontent.com/images/1JKfsQjCthSQEaxzteDKpRprZM.png"
```

2. Upgrade the helm using the updated `custom_values.yaml` file:

```console
helm upgrade --install -n kfuse \
kfuse <Your Kloudfuse Installation IP or address>kfuse-helm/kfuse \
   --version <VERSION.NUM.BER> \ (1)
   -f custom_values.yaml
```

|     |     |
| --- | --- |
| **1** | `version`: Use the version number of the most current Kloudfuse release; the pattern looks like `3.0.0`, `3.1.3`, and so on. See [Version](https://docs.kloudfuse.com/platform/3.5.0/help/#version) documentation. |

3. Restart the `kfuse-auth` deployment to integrate the changes. For example, the changes in [Step1 1](https://docs.kloudfuse.com/platform/3.5.0/sso/#step1) update the banner as shown below.
