Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Fixes #491: Prometheus Operator ClusterRole missing some permissions. #558

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ rules:
- alertmanagers
- prometheuses
- servicemonitors
- prometheusrules
verbs:
- "*"
- apiGroups:
Expand All @@ -55,16 +56,19 @@ rules:
- apiGroups: [""]
resources:
- pods
verbs: ["list", "delete"]
verbs: ["list", "delete", "watch"]
- apiGroups: [""]
resources:
- services
- endpoints
verbs: ["get", "create", "update"]
verbs: ["get", "create", "update", "watch", "list"]
- apiGroups: [""]
resources:
- nodes
verbs: ["list", "watch"]
- nonResourceURLs:
- /metrics
verbs: ["get"]
- apiGroups: [""]
resources:
- namespaces
Expand Down