Merge pull request #12 from thouveng/add-client

Add client metadata
stacklight
thouveng 6 years ago committed by GitHub
commit cd5c7aff89
  1. 4
      grafana/client.sls
  2. 6
      metadata/service/client/single.yml

@ -1,5 +1,5 @@
{%- from "grafana/map.jinja" import client with context %}
{%- if client.enabled %}
{%- if client.get('enabled', False) %}
/etc/salt/minion.d/_grafana.conf:
file.managed:
@ -22,7 +22,7 @@ grafana_client_datasource_{{ datasource_name }}:
- user: {{ datasource.user }}
- password: {{ datasource.password }}
{%- endif %}
{%- if datasource.get('is_default', false) %}
{%- if datasource.get('is_default', False) %}
- is_default: {{ datasource.is_default|lower }}
{%- endif %}
{%- if datasource.database is defined %}

@ -0,0 +1,6 @@
applications:
- grafana.client
parameters:
grafana:
client:
enabled: true
Loading…
Cancel
Save