Skip to content
Snippets Groups Projects
Unverified Commit 441065c2 authored by Matt Calvert's avatar Matt Calvert Committed by GitHub
Browse files

Correct typo in Rolebindig

parent 8fdf1c77
No related branches found
Tags ghost-0.31.0 graylog-0.3.5
No related merge requests found
...@@ -5,14 +5,14 @@ This guide will help you monitor applications in other Namespaces. By default th ...@@ -5,14 +5,14 @@ This guide will help you monitor applications in other Namespaces. By default th
You have to give the list of the Namespaces that you want to be able to monitor. You have to give the list of the Namespaces that you want to be able to monitor.
This is done in the variable `prometheus.roleSpecificNamespaces`. You usually set this in your `.jsonnet` file when building the manifests. This is done in the variable `prometheus.roleSpecificNamespaces`. You usually set this in your `.jsonnet` file when building the manifests.
Example to create the needed `Role` and `Rolebindig` for the Namespace `foo` : Example to create the needed `Role` and `RoleBinding` for the Namespace `foo` :
``` ```
local kp = (import 'kube-prometheus/kube-prometheus.libsonnet') + { local kp = (import 'kube-prometheus/kube-prometheus.libsonnet') + {
_config+:: { _config+:: {
namespace: 'monitoring', namespace: 'monitoring',
prometheus+:: { prometheus+:: {
namespaces: ["default", "kube-system","foo"], namespaces: ["default", "kube-system", "foo"],
}, },
}, },
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment