mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 19:45:35 +00:00
24 lines
529 B
YAML
24 lines
529 B
YAML
|
# Copyright (c) Tailscale Inc & AUTHORS
|
||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
kind: ClusterRole
|
||
|
metadata:
|
||
|
name: tailscale-auth-proxy
|
||
|
rules:
|
||
|
- apiGroups: [""]
|
||
|
resources: ["users"]
|
||
|
verbs: ["impersonate"]
|
||
|
---
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
kind: ClusterRoleBinding
|
||
|
metadata:
|
||
|
name: tailscale-auth-proxy
|
||
|
subjects:
|
||
|
- kind: ServiceAccount
|
||
|
name: operator
|
||
|
namespace: tailscale
|
||
|
roleRef:
|
||
|
kind: ClusterRole
|
||
|
name: tailscale-auth-proxy
|
||
|
apiGroup: rbac.authorization.k8s.io
|