-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #380 from omerlh/prom-all-namespaces
added patch to allow prom to watch all namespaces
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
jsonnet/kube-prometheus/kube-prometheus-all-namespaces.libsonnet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
local k = import 'ksonnet/ksonnet.beta.4/k.libsonnet'; | ||
|
||
{ | ||
prometheus+:: { | ||
clusterRole+: { | ||
rules+: | ||
local role = k.rbac.v1.role; | ||
local policyRule = role.rulesType; | ||
local rule = policyRule.new() + | ||
policyRule.withApiGroups(['']) + | ||
policyRule.withResources([ | ||
'services', | ||
'endpoints', | ||
'pods', | ||
]) + | ||
policyRule.withVerbs(['get', 'list', 'watch']); | ||
[rule] | ||
}, | ||
} | ||
} |