Signed-off-by: Margo Crawford <margaretc@vmware.com>
5.7 KiB
title | description | cascade | menu | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Configure the Pinniped Supervisor to use Okta as an OIDC provider | Set up the Pinniped Supervisor to use Okta login. |
|
|
The Supervisor is an OpenID Connect (OIDC) issuer that supports connecting a single "upstream" identity provider to many "downstream" cluster clients.
This guide shows you how to configure the Supervisor so that users can authenticate to their Kubernetes cluster using their Okta credentials.
Prerequisites
This how-to guide assumes that you have already [installed the Pinniped Supervisor]({{< ref "install-supervisor" >}}) with working ingress, and that you have [configured a FederationDomain to issue tokens for your downstream clusters]({{< ref "configure-supervisor" >}}).
Create an Okta Application
Follow the instructions for setting up an app using authcode flow and create an app. Optionally follow the instructions for customizing tokens returned from Okta with a groups claim if you want to pass users' Okta group information through to your Kubernetes clusters.
For example, to create an app:
- In the Okta Admin Console, navigate to Applications > Applications.
- Create a new app:
- Click
Create App Integration
. - For
Sign-on method
, selectOIDC
. - For
Application type
, appWeb Application
, then click next. Only if you would like to offer the password grant flow to your end users, then chooseNative Application
instead. - Enter a name for your app, such as "My Kubernetes Clusters".
- If you chose to create a
Web Application
then in the General Settings section, choose Grant TypesAuthorization Code
andRefresh Token
. - If you chose
Native Application
then in the General Settings section, choose Grant TypesAuthorization Code
,Refresh Token
, andResource Owner Password
. - Enter the sign-in redirect URI. This is the
spec.issuer
you configured in yourFederationDomain
appended with/callback
. - Optionally select
Limit access to selected groups
to restrict which Okta users can log in to Kubernetes using this integration. - Save the app and make note of the Client ID and Client secret. If you chose to create a
Native Application
then there is an extra step required to get a client secret: after saving the app, in the Client Credentials section clickEdit
, chooseUse Client Authentication
, and clickSave
. - Navigate to the Sign On tab > OpenID Connect ID Token and click
Edit
. Fill in the Groups claim filter. For example, for all groups to be present under the claim namegroups
, fill in "groups" in the first box, then select "Matches regex" and ".*".
- Click
Configure the Supervisor
Create an [OIDCIdentityProvider](https://github.com/vmware-tanzu/pinniped/blob/main/generated/{{< latestcodegenversion >}}/README.adoc#oidcidentityprovider) in the same namespace as the Supervisor.
For example, this OIDCIdentityProvider and corresponding Secret use Okta's email
claim as the Kubernetes username:
apiVersion: idp.supervisor.pinniped.dev/v1alpha1
kind: OIDCIdentityProvider
metadata:
namespace: pinniped-supervisor
name: okta
spec:
# Specify the upstream issuer URL (no trailing slash). Change this to be the
# actual issuer provided by your Okta account.
issuer: https://my-company.okta.com
# Specify how to form authorization requests to Okta.
authorizationConfig:
# Request any scopes other than "openid" for claims besides
# the default claims in your token. The "openid" scope is always
# included.
#
# To learn more about how to customize the claims returned, see here:
# https://developer.okta.com/docs/guides/customize-tokens-returned-from-okta/overview/
additionalScopes: [offline_access, groups, email]
# If you would also like to allow your end users to authenticate using
# a password grant, then change this to true. Password grants only work
# with applications created in Okta as "Native Applications".
allowPasswordGrant: false
# Specify how Okta claims are mapped to Kubernetes identities.
claims:
# Specify the name of the claim in your Okta token that will be mapped
# to the "username" claim in downstream tokens minted by the Supervisor.
username: email
# Specify the name of the claim in Okta that represents the groups
# that the user belongs to. This matches what you specified above
# with the Groups claim filter.
groups: groups
# Specify the name of the Kubernetes Secret that contains your Okta
# application's client credentials (created below).
client:
secretName: okta-client-credentials
---
apiVersion: v1
kind: Secret
metadata:
namespace: pinniped-supervisor
name: okta-client-credentials
type: secrets.pinniped.dev/oidc-client
stringData:
# The "Client ID" that you got from Okta.
clientID: "<your-client-id>"
# The "Client secret" that you got from Okta.
clientSecret: "<your-client-secret>"
Once your OIDCIdentityProvider has been created, you can validate your configuration by running:
kubectl describe OIDCIdentityProvider -n pinniped-supervisor okta
Look at the status
field. If it was configured correctly, you should see phase: Ready
.
Next steps
Next, [configure the Concierge to validate JWTs issued by the Supervisor]({{< ref "configure-concierge-supervisor-jwt" >}})! Then you'll be able to log into those clusters as any of the users from the Okta directory.