You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
573 B
23 lines
573 B
3 months ago
|
{
|
||
|
prometheus+:: {
|
||
|
clusterRole+: {
|
||
|
rules+: [
|
||
|
{
|
||
|
apiGroups: [''],
|
||
|
resources: ['services', 'endpoints', 'pods'],
|
||
|
verbs: ['get', 'list', 'watch'],
|
||
|
},
|
||
|
{
|
||
|
apiGroups: ['networking.k8s.io'],
|
||
|
resources: ['ingresses'],
|
||
|
verbs: ['get', 'list', 'watch'],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
// There is no need for specific namespaces RBAC as this addon grants
|
||
|
// all required permissions for every namespace
|
||
|
roleBindingSpecificNamespaces:: null,
|
||
|
roleSpecificNamespaces:: null,
|
||
|
},
|
||
|
}
|