Ansible-roles/monitoring.grafana
Vasili Karaev a369422aff grafana: add readme 2020-06-01 14:21:04 +03:00
..
defaults grafana: add anonymous parameter 2020-03-24 15:05:13 +03:00
tasks grafana: adjust ldap condition 2020-03-24 15:04:53 +03:00
templates grafana: add port parameter 2020-06-01 14:20:56 +03:00
README.md grafana: add readme 2020-06-01 14:21:04 +03:00

README.md

monitoring.grafana

Role arguments:

grafana:
  # a string designating the port to bind
  port: "6379"
  # a string used to construct GF_SERVER_ROOT_URL,
  # by default it is also used in the traefik frontend rule
  domain: "grafana.internal"
  ldap:
    # a boolean that switches LDAP authentication on or off
    enabled: false
    # a dictionary of ldap access group mappings
    access_groups:
      admin: "cn=grafana.admin,ou=groups,dc=example,dc=com"
      editor: "cn=grafana.admin,ou=groups,dc=example,dc=com"
      viewer: "cn=grafana.admin,ou=groups,dc=example,dc=com"
  docker:
    # a list of networks to attach to
    networks:
      - web
    # a dictionary of docker labels to add
    labels:
      "traefik.enable": "off"