Skip to content
Snippets Groups Projects
Unverified Commit 859b87b4 authored by paulfantom's avatar paulfantom
Browse files

examples: add example of running without grafana deployment


Signed-off-by: default avatarpaulfantom <pawel@krupa.net.pl>
parent a27f65e9
No related branches found
No related tags found
Loading
local kp =
(import 'kube-prometheus/main.libsonnet') +
{
values+:: {
common+: {
namespace: 'monitoring',
},
},
// Disable all grafana-related objects apart from dashboards and datasource
grafana: {
dashboardSources:: {},
deployment:: {},
serviceAccount:: {},
serviceMonitor:: {},
service:: {},
},
};
// Manifestation
{
[component + '-' + resource + '.json']: kp[component][resource]
for component in std.objectFields(kp)
for resource in std.objectFields(kp[component])
}
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