Kubernetes - RBAC and Security
You applied this RoleBinding YAML but the user still cannot access resources:
apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding metadata: name: access-pods namespace: test subjects: - kind: User name: bob roleRef: kind: Role name: pod-reader apiGroup: rbac.authorization.k8s.ioWhat is the most likely issue?
