The GET /strategies
endpoint shows all available authentication strategies.
When a particular authentication strategy requires additional configuration parameters, these will be exposed under the "extensions" key. Otherwise this attribute will not be present.
Example:
$ curl https://api.krateoplatformops.io/authn/strategies
[
{
"kind": "basic",
"path": "/basic/login"
},
{
"kind": "ldap",
"name": "forumsys",
"path": "/ldap/login"
},
{
"kind": "ldap",
"name": "openldap",
"path": "/ldap/login"
},
{
"kind": "github",
"name": "github-example",
"path": "/github/login",
"extensions": {
"authCodeURL": "https://github.com/login/oauth/authorize?client_id=XXXX&redirect_uri=http%3A%2F%2Flocalhost%3A8888%2Fgithub%2Fgrant&response_type=code&scope=read%3Auser+read%3Aorg&state=YYYY",
"redirectURL": "http://localhost:8888/github/grant"
}
},
{
"kind": "oidc",
"name": "oidc-example",
"path": "/oidc/login",
"extensions": {
"authCodeURL": "https://login.microsoftonline.com/XXXX/oauth2/v2.0/authorize?client_id=XXXX\u0026redirect_uri=http%3A%2F%2Flocalhost%3A8080%2Foidc%2Fcallbacl\u0026response_mode=query\u0026response_type=code\u0026scope=openid+email+profile+User.Read",
"redirectURL": "http://localhost:8080/oidc/callback"
}
}
]
Regardless of the strategy used, the response will always be a json with the following structure:
{
"code":200,
"user":{
"displayName":"John Doe",
"username":"johndoe",
"avatarURL":"https://avatars.githubusercontent.com/u/585381?v=4"
},
"groups": [
"devs"
],
"data":{
"apiVersion":"v1",
"clusters":[
{
"cluster":{
"certificate-authority-data":"<base64-ca-cert-data>",
"server":"https://127.0.0.1:51461"
},
"name":"krateo"
}
],
"contexts":[
{
"context":{
"cluster":"krateo",
"user":"johndoe"
},
"name":"krateo"
}
],
"current-context":"krateo",
"kind":"Config",
"users":[
{
"user":{
"client-certificate-data":"<base64-user-cert-data>",
"client-key-data":"<base64-user-cert-key-data>"
},
"name":"johndoe"
}
]
}
}
The Authorization header field is constructed as follows:
-
username and password are combined with a single colon
- this means that the username itself cannot contain a colon
-
the resulting string is encoded using a variant of Base64 (+/ and with padding)
-
the authorization method and a space character (e.g. "Basic ") is then prepended to the encoded string.
For example, if the username is Aladdin and the password is open sesame, then the field's value is the Base64 encoding of Aladdin:open sesame, or QWxhZGRpbjpvcGVuIHNlc2FtZQ==
Then the Authorization header field will appear as: Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
Example:
curl https://reqbin.com/echo
-H "Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=="
Let's take Github as example, the same concept applies to all authentication systems of this type (authorization code flow).
With a valid authorization code grant invoke the related endpoint path
, passing the name
as query string parameter.
Example:
$ curl -H "X-Auth-Code: $(AUTH_CODE)" \
https://api.krateoplatformops.io/authn/github/login?name=github-example
To login using LDAP credentials must be sent as JSON using POST:
$ curl -X POST "https://api.krateoplatformops.io/authn/ldap/login?name=openldap" \
-H 'Content-Type: application/json' \
-d '{"username":"XXXXXX","password":"YYYYYY"}'
To login using OIDC credentials, the authorization code must be sent throught the X-Auth-Code
header field:
$ curl -H "X-Auth-Code: $(AUTH_CODE)" \
https://api.krateoplatformops.io/authn/oidc/login?name=oidc-example
The authn application supports the Discovery endpoint. If you provide a Discovery endpoint the values for authorizationURL
, tokenURL
and userInfoURL
are ignored and overwritten. If you do not provide a Discovery endpoint, the values for authorizationURL
, tokenURL
and userInfoURL
are used.
To obtain proper groups mappings you need to configure the ID Token response on the application side. Likewise for the profile picture. Examples are listed below for Azure and KeyCloak.
Azure can be configured to authenticate users through OIDC (Official Azure Documentation for OIDC). To achieve this, you need to create a new app registration as follows:
On Azure:
- Go to "App registrations" and then hit "New registration";
- Configure the display name, account types and Redirect URI. The redirect URI must point to Krateo's frontend with an HTTPS endpoint and the path
/auth/oidc
; - Create a client secret in "Certificates & secrets", save the value of the secret now as it cannot by visualized afterwards;
- In the "Authentication" menu, find and activate
Access tokens
andID tokens
; - In the "API permissions" menu, add the following:
openid
,email
,profile
,User.Read
andUser.ReadBasic.All
; - To obtain groups in the OIDC ID Token response, in the "Manifest" menu, modify the value
groupMembershipClaims
toAll
(Official Azure documentation for the groupMembershipClaims);
On AuthN:
- To obtain the user avatar/profile image include
User.Read
in theadditionalScopes
field of the OIDCConfiguration custom resource; - You can now configure the Authn's CR by using Azure discovery URL, which will be in the following format:
https://login.microsoftonline.com/<your-tenant-id>/v2.0/.well-known/openid-configuration
If you do not get the correct groups in the AuthN response, please verify your Azure OIDC configuration: the manifest value "groupMembershipClaims:All" adds in the JWT ID Token the value "groups", which contains an array of UIDs of the groups the user belongs. You can check the JWT ID Token returned by Azure by simulating the calls to the Authorization and Token endpoints through Postman or curl. The exact endpoints are contained in the "well-known" endpoint (Authorization and Token).
On Azure, set the redirect URI to, for example, "http://localhost:8080" for testing without HTTPS, then open the following page in a web browser:
https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/authorize?client_id=<client-id>&response_type=code&redirect_uri=http://localhost:8080&response_mode=query&scope=openid email profile User.Read
Login, then Azure will redirect you to the redirect URI, which will error out, however, there will be a "code" query parameter in the URL. Copy this code parameter being careful not to copy other query parameters. Through cURL or Postman perform a POST to:
https://login.microsoftonline.com/<tentant-id>/oauth2/v2.0/token
with the following body values:
client_id=<client-id>
client_secret=<client-secret>
code=<the code from the redirect url>
redirect_uri=http://localhost:8080
grant_type=authorization_code
You can then decode the JWT and verify that "groups" is present with the Microsoft offline decoder.
To obtain groups, add a custom mapper of type "Group Membership" and give it the Token Claim Name "groups", uncheck Full group path
. Add groups
into the additionalScopes
field of the OIDCConfiguration custom resource.
To obtain the user avatar/profile image, go to the realm settings, then "User profiles" tab, "Create Attribute", and add one with the name picture
. Set the profile picture for the user to a URL pointing to a picture. Keycloak will now return the avatar during authentication.