Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
kube-prometheus
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
prometheus-operator
kube-prometheus
Commits
85d6c48f
Commit
85d6c48f
authored
6 years ago
by
prune
Browse files
Options
Downloads
Patches
Plain Diff
allow creation of role and rolebindings for other namespaces in jsonnet
parent
aee5d452
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/monitoring-other-namespaces.md
+28
-0
28 additions, 0 deletions
docs/monitoring-other-namespaces.md
jsonnet/kube-prometheus/prometheus/prometheus.libsonnet
+36
-0
36 additions, 0 deletions
jsonnet/kube-prometheus/prometheus/prometheus.libsonnet
with
64 additions
and
0 deletions
docs/monitoring-other-namespaces.md
0 → 100644
+
28
−
0
View file @
85d6c48f
# Monitoring other Kubernetes Namespaces
This guide will help you monitor applications in other Namespaces, which is only enabled for the
`Default`
Namespace during Install.
# Setup
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.
Ex to create the needed
`Role`
and
`Rolebindig`
for the Namespace
`foo`
:
```
local kp = (import 'kube-prometheus/kube-prometheus.libsonnet') + {
_config+:: {
namespace: 'monitoring',
prometheus+:: {
roleSpecificNamespaces: ["foo"],
},
},
};
{ ['00namespace-' + name]: kp.kubePrometheus[name] for name in std.objectFields(kp.kubePrometheus) } +
{ ['0prometheus-operator-' + name]: kp.prometheusOperator[name] for name in std.objectFields(kp.prometheusOperator) } +
{ ['node-exporter-' + name]: kp.nodeExporter[name] for name in std.objectFields(kp.nodeExporter) } +
{ ['kube-state-metrics-' + name]: kp.kubeStateMetrics[name] for name in std.objectFields(kp.kubeStateMetrics) } +
{ ['alertmanager-' + name]: kp.alertmanager[name] for name in std.objectFields(kp.alertmanager) } +
{ ['prometheus-' + name]: kp.prometheus[name] for name in std.objectFields(kp.prometheus) } +
{ ['grafana-' + name]: kp.grafana[name] for name in std.objectFields(kp.grafana) }
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
jsonnet/kube-prometheus/prometheus/prometheus.libsonnet
+
36
−
0
View file @
85d6c48f
...
@@ -21,6 +21,7 @@ local k = import 'ksonnet/ksonnet.beta.3/k.libsonnet';
...
@@ -21,6 +21,7 @@ local k = import 'ksonnet/ksonnet.beta.3/k.libsonnet';
replicas
:
2
,
replicas
:
2
,
rules
:
{},
rules
:
{},
renderedRules
:
{},
renderedRules
:
{},
roleSpecificNamespaces
:
[],
},
},
},
},
...
@@ -65,6 +66,20 @@ local k = import 'ksonnet/ksonnet.beta.3/k.libsonnet';
...
@@ -65,6 +66,20 @@ local k = import 'ksonnet/ksonnet.beta.3/k.libsonnet';
roleBinding
.
mixin
.
roleRef
.
withName
(
'prometheus-'
+
$
.
_config
.
prometheus
.
name
)
+
roleBinding
.
mixin
.
roleRef
.
withName
(
'prometheus-'
+
$
.
_config
.
prometheus
.
name
)
+
roleBinding
.
mixin
.
roleRef
.
mixinInstance
({
kind
:
'Role'
})
+
roleBinding
.
mixin
.
roleRef
.
mixinInstance
({
kind
:
'Role'
})
+
roleBinding
.
withSubjects
([{
kind
:
'ServiceAccount'
,
name
:
'prometheus-'
+
$
.
_config
.
prometheus
.
name
,
namespace
:
$
.
_config
.
namespace
}]),
roleBinding
.
withSubjects
([{
kind
:
'ServiceAccount'
,
name
:
'prometheus-'
+
$
.
_config
.
prometheus
.
name
,
namespace
:
$
.
_config
.
namespace
}]),
roleBindingSpecificNamespace
:
local
roleBinding
=
k
.
rbac
.
v1
.
roleBinding
;
local
newSpecificRoleBinding
(
namespace
)
=
roleBinding
.
new
()
+
roleBinding
.
mixin
.
metadata
.
withName
(
'prometheus-'
+
$
.
_config
.
prometheus
.
name
)
+
roleBinding
.
mixin
.
metadata
.
withNamespace
(
namespace
)
+
roleBinding
.
mixin
.
roleRef
.
withApiGroup
(
'rbac.authorization.k8s.io'
)
+
roleBinding
.
mixin
.
roleRef
.
withName
(
'prometheus-'
+
$
.
_config
.
prometheus
.
name
)
+
roleBinding
.
mixin
.
roleRef
.
mixinInstance
({
kind
:
'Role'
})
+
roleBinding
.
withSubjects
([{
kind
:
'ServiceAccount'
,
name
:
'prometheus-'
+
$
.
_config
.
prometheus
.
name
,
namespace
:
namespace
}]);
local
roleBindigList
=
k
.
rbac
.
v1
.
roleBindingList
;
roleBindigList
.
new
([
newSpecificRoleBinding
(
x
)
for
x
in
$
.
_config
.
prometheus
.
roleSpecificNamespaces
]),
clusterRole
:
clusterRole
:
local
clusterRole
=
k
.
rbac
.
v1
.
clusterRole
;
local
clusterRole
=
k
.
rbac
.
v1
.
clusterRole
;
local
policyRule
=
clusterRole
.
rulesType
;
local
policyRule
=
clusterRole
.
rulesType
;
...
@@ -163,6 +178,27 @@ local k = import 'ksonnet/ksonnet.beta.3/k.libsonnet';
...
@@ -163,6 +178,27 @@ local k = import 'ksonnet/ksonnet.beta.3/k.libsonnet';
role
.
mixin
.
metadata
.
withName
(
'prometheus-'
+
$
.
_config
.
prometheus
.
name
)
+
role
.
mixin
.
metadata
.
withName
(
'prometheus-'
+
$
.
_config
.
prometheus
.
name
)
+
role
.
mixin
.
metadata
.
withNamespace
(
'default'
)
+
role
.
mixin
.
metadata
.
withNamespace
(
'default'
)
+
role
.
withRules
(
coreRule
),
role
.
withRules
(
coreRule
),
roleSpecificNamespace
:
local
role
=
k
.
rbac
.
v1
.
role
;
local
policyRule
=
role
.
rulesType
;
local
coreRule
=
policyRule
.
new
()
+
policyRule
.
withApiGroups
([
''
])
+
policyRule
.
withResources
([
'nodes'
,
'services'
,
'endpoints'
,
'pods'
,
])
+
policyRule
.
withVerbs
([
'get'
,
'list'
,
'watch'
]);
local
newSpecificRole
(
namespace
)
=
role
.
new
()
+
role
.
mixin
.
metadata
.
withName
(
'prometheus-'
+
$
.
_config
.
prometheus
.
name
)
+
role
.
mixin
.
metadata
.
withNamespace
(
namespace
)
+
role
.
withRules
(
coreRule
);
local
roleList
=
k
.
rbac
.
v1
.
roleList
;
roleList
.
new
([
newSpecificRole
(
x
)
for
x
in
$
.
_config
.
prometheus
.
roleSpecificNamespaces
]),
roleBindingKubeSystem
:
roleBindingKubeSystem
:
local
roleBinding
=
k
.
rbac
.
v1
.
roleBinding
;
local
roleBinding
=
k
.
rbac
.
v1
.
roleBinding
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment