Commit 2f417fec authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

grafana chart with anonymous admin + persistence enabled

parent ea2e4dc4
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.vscode
.project
.idea/
*.tmproj
OWNERS
+19 −0
Original line number Diff line number Diff line
apiVersion: v1
appVersion: 6.5.2
description: The leading tool for querying and visualizing time series and metrics.
engine: gotpl
home: https://grafana.net
icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png
kubeVersion: ^1.8.0-0
maintainers:
- email: zanhsieh@gmail.com
  name: zanhsieh
- email: rluckie@cisco.com
  name: rtluckie
- email: maor.friedman@redhat.com
  name: maorfr
name: grafana
sources:
- https://github.com/grafana/grafana
tillerVersion: '>=2.12.0'
version: 4.3.0
+313 −0

File added.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
# Leave this file empty to ensure that CI runs builds against the default configuration in values.yaml.
+53 −0
Original line number Diff line number Diff line
dashboards:
  my-provider:
    my-awesome-dashboard:
      # An empty but valid dashboard
      json: |
        {
          "__inputs": [],
          "__requires": [
            {
              "type": "grafana",
              "id": "grafana",
              "name": "Grafana",
              "version": "6.3.5"
            }
          ],
          "annotations": {
            "list": [
              {
                "builtIn": 1,
                "datasource": "-- Grafana --",
                "enable": true,
                "hide": true,
                "iconColor": "rgba(0, 211, 255, 1)",
                "name": "Annotations & Alerts",
                "type": "dashboard"
              }
            ]
          },
          "editable": true,
          "gnetId": null,
          "graphTooltip": 0,
          "id": null,
          "links": [],
          "panels": [],
          "schemaVersion": 19,
          "style": "dark",
          "tags": [],
          "templating": {
            "list": []
          },
          "time": {
            "from": "now-6h",
            "to": "now"
          },
          "timepicker": {
            "refresh_intervals": ["5s"]
          },
          "timezone": "",
          "title": "Dummy Dashboard",
          "uid": "IdcYQooWk",
          "version": 1
        }
      datasource: Prometheus
Loading