Kubernetes: User Authorization with Certificate

Generate a private key:

Shell

Generate a certificate signing request (csr) from private key:

CN is the user, O is the group.

Shell

We create CertificateSigningRequest to Kubernetes:

.spec.signerName read here.

YAML

Once you send the CSR, you can query it with:

Shell

Now Admin will approve/deny the CSR:

Shell

Once you got approved, fetch the signed certificate and wrap in base64:

Shell

Using HTTP request:

Shell

Using Kubeconfig:

Shell

Set a new context:

Shell

Switch to new context:

Shell

At this point you should be able to access resources allowed by Role and RoleBinding for this user.

References: