Kubernetes - RBAC and Security
Given this
RoleBinding YAML snippet, what namespace will the binding apply to?apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding metadata: name: read-pods namespace: dev roleRef: kind: Role name: pod-reader apiGroup: rbac.authorization.k8s.io subjects: - kind: User name: jane
