mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 11:35:35 +00:00
3b55bf9306
Fixes #4071 Signed-off-by: Maisem Ali <maisem@tailscale.com>
17 lines
549 B
YAML
17 lines
549 B
YAML
# Copyright (c) 2022 Tailscale Inc & AUTHORS All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
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"]
|