Authentication Methods Via Dex
This page describes how to setup and configure other forms of authentication via Dex.
Introduction
Trilio For Kubernetes (T4K) uses Dex as a portal to other identity providers through connectors. For more information about these services, refer to the Useful References section at the top of this page.

A connector is a strategy used by Dex for authenticating a user against another identity provider. Dex implements connectors that target specific platforms such as GitHub, LinkedIn, and Microsoft as well as established protocols like LDAP.
Pre-Requisites
- LDAP / AD: LDAP protocol requires one read-only user who can perform LDAP searches to fetch users and groups. 
- OpenShift: By default, OpenShift clusters already have Login Via OpenShift configured during the Trilio installation. T4K does not require any additional user input for that. 
Configuration
STEP 1: Configure your OIDC authentication provider to allow authentication for T4K Web. Create a new application on the authentication provider portal, then use the T4K callback URL http(s):///dex/callback in the OIDC provider portal, and finally, generate client and secret keys.
The following are links to achieve this for the most popular OIDC authentication providers:
- Navigate to the Google application's API Credentials page. 
- Click + Create Credentials.  
- From the dropdown displayed, click OAuth client ID. 
- In the Application type field, use the dropdown menu to select Web application.  
- Type a meaningful Name for the OAuth ID. 
- Add authorized redirect URIs as the TVK call back URL. For example, for the NodePort use http://default.k8s-tvk.com:32663/dex/callback and for the LoadBalancer use: http://gke-270.k8s-tvk.demo.trilio.io/dex/callback  
- Click Create. 
- Copy Your Client ID and Your Client Secret values displayed.  
Navigate to the GitHub application: https://github.com/settings/applications/new
Create a new application on the authentication provider portal, then use the TVK callback URL http(s):///dex/callback in the OIDC provider portal, and finally, generate client and secret keys.
Navigate to the LinkedIn application: https://developer.linkedin.com/
Create a new application on the authentication provider portal, then use the TVK callback URL http(s):///dex/callback in the OIDC provider portal, and finally, generate client and secret keys.
Navigate to the GitLab application: https://gitlab.com/-/profile/applications
Create a new application on the authentication provider portal, then use the TVK callback URL http(s):///dex/callback in the OIDC provider portal, and finally, generate client and secret keys.
- Ensure that the LDAP server is deployed and configured. 
- Retrieve the following details from the LDAP server, as these are used in the next steps: - LDAP server host IP or FQDN e.g. ldap.tvkdemo.org 
- DNS domain name e.g. tvkdemo.org 
- bindDN: cn=username,dc=tvkdemo,dc=org 
- bindPW: password 
 
- Navigate to the Azure Home > App registrations > Register an application:(https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade)  
- Type a meaningful name for application; i.e. TVK-UI-LOGIN. 
- From the radio button options, choose who can use this application or access this API. 
- Select Web from the dropdown menu. 
- Type the redirect URI https://default.k8s-tvk.com/dex/callback. 
- Click Register. 
- Note down the following two details: - Application (client) ID, e.g. - 27920363-a70c-4f26-8fb3-a89c57683a4f
- Token endpoint - https://login.microsoftonline.com/48da23f5-8efc-4e39-b8cd-861508903cec 
  
- In Azure's left menu panel, select Certificates & Secrets.  
- On the screen displayed, select + New client secret. 
- In the pop-up window displayed, type a meaningful Description for your client secret, e.g. TVK UI Login Secret. Also set an expiry period.  
- Click Add. 
- The Client secrets tab automatically displays available secrets. Copy the Value for the secret just added.  
- Using the copied value from the previous step, configure the TVK Management Console access over HTTPS. Refer to the following documentation guide: Here 
By default, OpenShift clusters already have Login Via OpenShift configured during the Triliovault installation. TVK does not require any additional user input for that, so Step 1 can be skipped for OpenShift.
- Login into Keycloak Management portal. 
- Select the realm which use for authentication. 
- Navigate to the Client Tab and copy Client name for ClientID 

- Select the client and configure it with TVK URL and callback URL https://<TVK_URL>/dex/callback. 

5. Go to Credential tab and Copy Your Client Secret values displayed.

Step 2: Prepare a secret.yaml file with the name triliovault-dex that has all the copied details of the authentication provider from Step 1 (Your Client ID and Your Client Secret). Refer to the relevant tab below to guide you how to form your secret.yaml for each of the main providers.
You can choose other authentication providers and you can determine what details should be included in the associated secret.yaml file by reviewing the most common options below.
apiVersion: v1
kind: Secret
metadata:
  name: triliovault-dex
  namespace: <tvk-install-namespace>
type: Opaque
stringData:
  TVK_DEX_CONFIG: |-
    connectors:
    - type: google
      id: google
      name: Google
      config:
        clientID: xxxxx.apps.googleusercontent.com
        clientSecret: yyyyyyyyyyyyyyyyyyyy
        redirectURI: http://<ingress-domain>/dex/callbackapiVersion: v1
kind: Secret
metadata:
  name: triliovault-dex
  namespace: <tvk-install-namespace>
type: Opaque
stringData:
  TVK_DEX_CONFIG: |-
    connectors: 
    - type: github
      id: github
      name: GitHub
      config:
        clientID: xxxxxxxxxxxxxxxxxxxxx
        clientSecret: yyyyyyyyyyyyyyyyyyyyyyyy
        redirectURI: http://<ingress-domain>/dex/callbackapiVersion: v1
kind: Secret
metadata:
  name: triliovault-dex
  namespace: <tvk-install-namespace>
type: Opaque
stringData:
  TVK_DEX_CONFIG: |-
    connectors: 
    - type: linkedin
      id: linkedin
      name: LinkedIn
      config:
         clientID: 786xxxxxxxxxx
         clientSecret: 2myyyyyyyyyyy
         redirectURI: http://<ingress-domain>/dex/callbackapiVersion: v1
kind: Secret
metadata:
  name: triliovault-dex
  namespace: <tvk-install-namespace>
type: Opaque
stringData:
  TVK_DEX_CONFIG: |-
    connectors: 
    - type: gitlab
      id: gitlab
      name: Gitlab
      config:
         clientID: xxxxxxxxxxxxxxxxxxxxxxxxxxx
         clientSecret: yyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
         redirectURI: http://<ingress-domain>/dex/callbackapiVersion: v1
kind: Secret
metadata:
  name: triliovault-dex
  namespace: <tvk-install-namespace>
type: Opaque
stringData:
  TVK_DEX_CONFIG: |-
    connectors: 
    - type: ldap
      id: ldap
      name: "LDAP"
      config:
        host: <ldap-host>
        startTLS: false
        insecureNoSSL: true
        insecureSkipVerify: true
        bindDN: "cn=admin,dc=trilio,dc=io"
        bindPW: <read-only-user-pass>
        usernamePrompt: "Username"
        userSearch:
          baseDN: "dc=trilio,dc=io"
          filter: ""
          username: cn
          idAttr: cn
          emailAttr: cn
          nameAttr: cn
        groupSearch:
          baseDN: "dc=trilio,dc=io"
          filter: ""
          userAttr: cn
          groupAttr: cn
          nameAttr: cn   The following is a more detailed example with LDAP on SSL with multiple groups:
apiVersion: v1
kind: Secret
metadata:
 name: triliovault-dex
 namespace: <tvk-install-namespace>
 labels:
  triliovault.trilio.io/secret: triliovault-dex
type: Opaque
stringData:
 TVK_URL: https://cust1-trilio.scc.digital-tw.in
 TVK_DEX_CONFIG: |-
  connectors: 
  - type: ldap
    id: ldap
    name: "LDAP"
    config:
     host: vse.triliostaging.com:636
     rootCAData: <crt.pem>
     usernamePrompt: "Username"
     userSearch:
      baseDN: "cn=users,cn=compat,dc=triliostaging,dc=com"
      filter: ""
      username: uid
      idAttr: uid
      emailAttr: cn
      nameAttr: cn
     groupSearch:
      baseDN: "cn=groups,cn=compat,dc=triliostaging,dc=com"
      filter: "(|(cn=group1)(cn=group2))"
      userAttr: uid
      groupAttr: memberuid
      nameAttr: cnapiVersion: v1
kind: Secret
metadata:
  name: triliovault-dex
type: Opaque
stringData:
  TVK_DEX_CONFIG: |-
    connectors: 
    - type: oidc
      id: azure
      name: azure
      config:
        insecureSkipEmailVerified: true
        issuer: https://login.microsoftonline.com/0d4a2397-be27-42b5-9613-6650908518bc/v2.0
        clientID: xxxxxxxxxx
        clientSecret: yyyyyyyyyyyyy
        redirectURI: http://<ingress-domain>/dex/callbackapiVersion: v1
kind: Secret
metadata:
  name: triliovault-dex
  namespace: <tvk-install-namespace>
type: Opaque
stringData:
  TVK_DEX_CONFIG: |-
    connectors: 
    - type: openshift
      id: openshift
      name: OpenShift
      config:
        issuer: <OCP-api-url>
        clientID: system:serviceaccount:openshift-operators:<serviceaccount>
        clientSecret: yyyyyyyyyyyyyyyyy
        redirectURI: http://<ingress-domain>/dex/callback
        insecureCA: trueapiVersion: v1
kind: Secret
metadata:
  name: triliovault-dex
  namespace: <tvk-install-namespace>
type: Opaque
stringData:
  TVK_DEX_CONFIG: |-
    connectors: 
    - type: oidc
      id: azure
      name: azure
      config:
        insecureSkipEmailVerified: true
        issuer: https://<login-endpoint>
        clientID: xxxxxxxxxxxxx
        clientSecret: yyyyyyyyyyyyyyyyyyyyyy
        redirectURI: http://<ingress-domain>/dex/callbackapiVersion: v1
kind: Secret
metadata:
  name: triliovault-dex
  namespace: <tvk-install-namespace>
type: Opaque
stringData:
  TVK_DEX_CONFIG: |-
    connectors:
    - type: oidc
      id: keycloak
      name: keycloak
      config:
        issuer: https://<KeyCloak URL>
        clientID: XXXXXXX
        clientSecret: yyyyyyyyyyyyyyyyyyyy
        redirectURI: https://<ingress-domain>/dex/callback
        scopes:
        - openid
        - profile
        - email
        insecureSkipEmailVerified: true
        insecureEnableGroups: true
        insecureSkipVerify: true
        userIDKey: email
        userNameKey: emailRefer this doc for all other configuration details of all other connectors and any customer configurations required.
Step 3 (Optional) - Only if using 'Port Forwarding' or 'NodePort', update your secret.yaml file created in Step 1 with an additional key T4K_URL. This provides your custom URL with a port to access the T4K dashboard.
- Insert a new line in the secret.yaml file immediately after code line 9 (applies to all examples given in Step 1) and insert the following: - TVK_URL: http://<ingress-domain>:1234
- Save the secret YAML file using the same name as before. 
Step 4: Apply the new secret.yaml in the namespace of the k8s cluster where T4K is installed.
kubectl apply -f <secret.yaml> -n <tvk-namespace>This causes the creation of the T4K Dex deployment, which will reflect changes on the T4K Management Console UI. You will now find another way of logging in, according to what you have just configured, i.e. Login Via Github.
Step 5: Create a cluster role binding using the below command, making sure to replace the user with your user/email ID and the clusterrolebinding name, since it must be unique:
kubectl create clusterrolebinding admin-binding-1 --clusterrole=cluster-admin --user=<Google ID>Step 6: Navigate to the Management Console UI login page. You will now see an additional login method, which corresponds to what you have just configured in the previous steps; e.g. Login Via Github.

Last updated
