mirror of
https://github.com/prometheus-operator/kube-prometheus.git
synced 2025-10-27 14:11:03 +01:00
added patch to allow prom to watch all namespaces
This commit is contained in:
parent
9493a1a5f7
commit
f517b35a42
@ -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]
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user