You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current documentation for the Tekton and Topology plugin requires the user to create a Service Account for the Kubernetes plugin. It references the Kubernetes RBAC section in the backstage documentation, which does not mention the permissions required to display the pod logs.
To remedy this, the user would also need to provide the following permission (specifically the pods/log permission) to the Service Account's ClusterRole:
kind: ClusterRoleapiVersion: rbac.authorization.k8s.io/v1metadata:
name: view-pod-logsrules:
# Base for Kubernetes plugin
- apiGroups:
- ""resources:
- pods
- pods/logverbs:
- get
- list
The text was updated successfully, but these errors were encountered:
What needs to be done
The current documentation for the Tekton and Topology plugin requires the user to create a Service Account for the Kubernetes plugin. It references the Kubernetes RBAC section in the backstage documentation, which does not mention the permissions required to display the pod logs.
To remedy this, the user would also need to provide the following permission (specifically the
pods/log
permission) to the Service Account'sClusterRole
:The text was updated successfully, but these errors were encountered: