Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions go/k8s/manifests/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@ metadata:
app: unkey
component: krane

---
# Restricted service account for customer workloads
# This account has NO permissions - customers cannot query the K8s API
apiVersion: v1
kind: ServiceAccount
metadata:
name: customer-workload
namespace: unkey
labels:
app: unkey
component: customer
# automountServiceAccountToken is also disabled at pod level for defense in depth

---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
Expand Down
Loading