You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
582 B
18 lines
582 B
# Copyright (c) Tailscale Inc & AUTHORS
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: tailscale
|
|
rules:
|
|
- apiGroups: [""] # "" indicates the core API group
|
|
resources: ["secrets"]
|
|
# Create can not be restricted to a resource name.
|
|
verbs: ["create"]
|
|
- apiGroups: [""] # "" indicates the core API group
|
|
resourceNames: ["{{TS_KUBE_SECRET}}"]
|
|
resources: ["secrets"]
|
|
verbs: ["get", "update", "patch"]
|
|
- apiGroups: [""] # "" indicates the core API group
|
|
resources: ["events"]
|
|
verbs: ["get", "create", "patch"]
|
|
|