Kubernetes
According to the Kubernetes documentation, the API Server of Kubernetes can be authenticated using OpenID Connect (OIDC). This article will guide you on how to configure authentication in Kubernetes using Casdoor.
Environment Requirements
Prerequisites:
- A Kubernetes cluster.
- A Casdoor application like this demo website.
- kubectl command tool (optional).
Kubernetes oidc-issuer-url only accepts URLs which use the https:// prefix.
So your Casdoor application should be deployed on an HTTPS website.
Step 1: Creating a Casdoor App and User Account for Authentication
In Casdoor add an application (e.g. Kubernetes). Note Name, Organization, Client ID, and Client secret. Enable the grant types the cluster will use.
Add a user; set Organization and Signup application to the application you created.

Step 2: Configure Kubernetes API Server with OIDC Authentication
To enable the OIDC plugin, set the following flags on the API server:
--oidc-issuer-url: URL of the provider that allows the API server to discover public signing keys.--oidc-client-id: A client id that all tokens must be issued for.
This article uses minikube for demonstration. Configure the OIDC plugin for the minikube API server using the following command at startup:
minikube start --extra-config=apiserver.oidc-issuer-url=https://demo.casdoor.com --extra-config=apiserver.oidc-client-id=294b09fbc17f95daf2fe
Step 3: Test OIDC Authentication
Obtain Authentication Information
Due to the lack of a frontend in kubectl,
authentication can be performed by sending a POST request to the Casdoor server.
Here is the code in Python which sends a POST request to the Casdoor server
and retrieves the id_token and refresh_token:
import requests
import json
url = "https://demo.casdoor.com/api/login/oauth/access_token"
payload = json.dumps({
"grant_type": "password",
"client_id": "Kubernetes",
"client_secret": "72c65c3912aec24a9f3ec41b65a7577114ed2bae",
"username": "user_3u94sf",
"password": "123456"
})
response = requests.request("POST", url, data=payload)
print(response.text)
After executing this code, you should receive a response similar to the following:
{
"access_token": "xxx",
"id_token": "yyy",
"refresh_token": "zzz",
"token_type": "Bearer",
"expires_in": 72000,
"scope": ""
}
Use the obtained id_token to authenticate with the Kubernetes API server.
HTTP Request-Based Authentication
Add the token to the request header.
curl https://www.xxx.com -k -H "Authorization: Bearer $(id_token)"
https://www.xxx.comis the Kubernetes API server deployment address.
Kubectl Client-Based Authentication
Configuration File Method
Write the following configuration to the ~/.kube/config file.
You should replace each configuration item in the configuration file above with the values you obtained earlier.
users:
- name: minikube
user:
auth-provider:
config:
client-id: Kubernetes
client-secret: 72c65c3912aec24a9f3ec41b65a7577114ed2bae
id-token: $(id_token)
idp-issuer-url: https://demo.casdoor.com
refresh-token: $(refresh_token)
name: oidc
Access the API server with kubectl. Try running a test command.
kubectl cluster-info
Command Line Argument Method
Alternatively, pass the id_token in kubectl command-line parameters.
kubectl --token=$(id_token) cluster-info