K8s-authz is authorization middleware for Kubernetes, which is based on Casbin.
go get github.com/casbin/k8s-authz
This middleware uses K8s validation admission webhook to check the policies defined by casbin, for every request related to the pods. The K8s API server needs to know when to send the incoming request to our admission controller. For this part, we have defined a validation webhook which would proxy the requests for the pods and perform policy verification on it. The user would be allowed to perform the operations on the pods, only if the casbin enforcer authorizes it. The enforcer checks the roles of the user defined in the policies. This middleware would be deployed on the k8s cluster.
Before proceeding, make sure to have the following-
- Running k8s Cluster
- kubectl
- Openssl
-
Generate the certificates and keys for every user by using openssl and running the following script:
If you are on a Linux system, you can execute shell scripts directly
./gen_cert.sh
If you are on a Windows system, executing
./gen_cert.sh
can be problematic, especially if you are usingGit Bash
Follow the steps below:# Do not use Git Bash to execute these commands (You can use cmd) openssl genrsa -out certs/ca.key 2048 openssl req -new -x509 -key certs/ca.key -out certs/ca.crt openssl genrsa -out certs/casbin-key.pem 2048 openssl req -new -key certs/casbin-key.pem -subj "/CN=casbin.default.svc" -out casbin.csr openssl x509 -req -in casbin.csr -CA certs/ca.crt -CAkey certs/ca.key -CAcreateserial -out certs/casbin-crt.pem # You can use Git Bash to execute the following command, or you can use other equivalent methods export CA_BUNDLE=$(cat certs/ca.crt | base64 | tr -d '\n') cat manifests/ValidatingWebhookConf.yaml.template | envsubst > manifests/ValidatingWebhookConf.yaml
-
For a production server, we need to create a k8s
secret
to place the certificates for security purposes.kubectl create secret generic authz -n default \ --from-file=key.pem=certs/casbin-key.pem \ --from-file=cert.pem=certs/casbin-crt.pem
-
Once, this part is done we need to change the directory of the certs in main.go and then in manifests with that of the
secret
. -
Build the docker image from the Dockerfile manually by running the following command and then change the build version here and at the deployment file, as per the builds.
docker build -t casbin/k8s_authz:latest .
-
Define the casbin policies in the model.conf and policy.csv. You can refer the docs to get to know more about the working of these policies.
-
Before deploying, you can change the ports in main.go and also in the validation webhook configuration file depending on your usage.
-
Deploy the validation controller and the webhook on k8s cluster by running:
kubectl apply -f manifests/deployment.yaml # Wait for Deployment Ready kubectl apply -f manifests/ValidatingWebhookConf.yaml
Now the server should be running and ready to validate the requests for the operations on the pods.
You can check the official docs for more detailed explanation.
In case of any query, you can ask on our Discord.