Skip to main content
Version: vNext (upcoming release)

Kubernetes Access

Background

Kubernetes supports a variety of ways to perform authentication against the API Server. While there is tremendous flexibility in the core product, operators can encounter various practical challenges:

  • Cloud providers typically support only their native IAM implementation, which may not integrate with your IdP
  • OIDC providers may not provide group claims, requiring manual mappings to RBAC roles
  • Your IdP may not be reachable by the kubernetes control plane
  • Access is managed per cluster without central control
  • Dynamic privilege escalation during incidents are slow or cumbersome RBAC changes
  • VPN based protection may not be possible or desirable

Similarly, Kubernetes supports native audit logging capabilities, but can also run into practical challenges:

  • Cloud provider deployments may be ecosystem locked with limited tooling, if any
  • Cross-cluster and cross-service audit trails must be stitched together by the operator

Solution

Pomerium can be leveraged as a proxy for user requests to the API Server.

  • Any supported IdP can be supported for authentication, in any environment
  • Group membership is supported consistently
  • Centralized, dynamic, course grained access policy
  • Global, cross resource access and audit trail
  • API server protection without the operational challenges of VPN
  • Can be hosted inside your kubernetes cluster!

How it works

Pomerium supports two different methods of authenticating to the Kubernetes API server:

  • User Impersonation
  • Pomerium JWT (Kubernetes 1.30+)

See the comparison below for details on each method.

Kubernetes Integration

Building on top of a standard Kubernetes and Pomerium deployment:

  1. Pomerium is given access to a Kubernetes service account with impersonation permissions. The supported groups can be explicitly listed in the RBAC definition:
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: pomerium-impersonation
rules:
- apiGroups:
- ''
resources:
- users
verbs:
- impersonate
- apiGroups:
- ''
resources:
- groups
verbs:
- impersonate
resourceNames:
- group1
- group2
- group3
  1. A route's policy is created for the API server and configured to use the service account token
  2. Kubernetes RoleBindings operate against IdP Users and Group subjects
  3. Users access the protected cluster through their standard tools, using pomerium-cli as an auth provider in ~/.kube/config
  4. Pomerium authorizes requests and passes the user identity to the API server for fine grained RBAC

Referencing Pomerium Users in Kubernetes RBAC

Once Pomerium is configured to authenticate users to your Kubernetes cluster, you can use standard RBAC roles and role bindings to assign permissions to those users.

By default, your user may not be able to perform any actions, and you might see errors like this:

$ kubectl get pods
Error from server (Forbidden): pods is forbidden: User "foo@example.com" cannot list resource "pods" in API group "" in the namespace "default"

kubectl auth can be used to see your user and group names as set by Pomerium, and check whether you have permissions for a specific action:

$ kubectl auth whoami ATTRIBUTE VALUE Username foo@example.com Groups [system:authenticated]

$ kubectl auth can-i list pods
no

Create a role and role binding targeting your username (here, foo@example.com) as follows:

apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: example-role
rules:
- apiGroups:
- ''
resources:
- pods
verbs:
- get
- list
- watch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: example-role-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: example-role
subjects:
- kind: User
name: foo@example.com

Then, your user should be authorized:

$ kubectl auth can-i list pods
yes

Kubeconfig Setup

Edit your kubeconfig to use pomerium-cli as a credential plugin:

apiVersion: v1
kind: Config
clusters:
- cluster:
server: https://mycluster.localhost.pomerium.io # Pomerium route URL
name: mycluster
contexts:
- context:
cluster: mycluster
user: via-pomerium
name: mycluster
current-context: mycluster
users:
- name: via-pomerium
user:
exec:
apiVersion: client.authentication.k8s.io/v1beta1
command: pomerium-cli
args:
- k8s
- exec-credential
- https://mycluster.localhost.pomerium.io # Pomerium route URL