13

我正在尝试理解 helm,我想知道是否有人可以 ELI5 给我一些东西或帮助我做一些事情。

所以我确实在下面运行:

helm repo add coreos https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/

然后我使用以下方法安装了 kube-prometheus:

helm install coreos/kube-prometheus --name kube-prometheus -f values.yaml --namespace monitoringtest

一切正常,但我正在尝试从 json 文件中添加一些自定义仪表板,但我很难理解如何去做。

我在关注这个:https://blogcodevalue.wordpress.com/2018/09/16/automate-grafana-dashboard-import-process/

在我的 values.yaml 我在下面添加

serverDashboardConfigmaps:
  - example-dashboards

我明白,如果我这样做:

helm upgrade --install kube-prometheus -f values.yaml --namespace monitoringtest coreos/kube-prometheus

这应该会导致 grafana 拾取下面的名为 configmapexample-dashboards并从文件夹加载 * .jsoncustom-dashboards文件。

apiVersion: v1
kind: ConfigMap
metadata:
  name: example-dashboards
data:
{{ (.Files.Glob "custom-dashboards/*.json").AsConfig | indent 2 }}

# Or
# 
# data:
#   custom-dashboard.json: |-
# {{ (.Files.Get "custom.json") | indent 4 }}
#
# The filename (and consequently the key under data) must be in the format `xxx-dashboard.json` or `xxx-datasource.json`
# for them to be picked up.

现在有两个问题:

如何将上面的 configmap 添加到这个 helm 版本?

这个文件夹在哪里custom-dashboards?它在我的笔记本电脑上然后发送到grafana吗?

我需要将所有内容复制https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/到我的笔记本电脑上吗?

很抱歉解释了一切,但我只是想理解这一点。

4

3 回答 3

4

我部分想通了。我可以从 configmap 加载仪表板。还不是来自单独的 json 文件,但它是一个进步。

对于任何感兴趣的人,我将其放在我的 github 页面上:https ://github.com/tretos53/notes/blob/master/Grafana/Readme.MD

于 2019-04-25T15:03:50.180 回答
4

您可以在此处的 prometheus-operator 图表中找到如何执行此操作的一个很好的示例:

https://github.com/helm/charts/tree/master/stable/prometheus-operator/templates/grafana

它是一个 ConfigMapList,它从给定目录获取所有 JSON,并将它们存储到 Grafana 读取的 ConfigMaps 中。

{{- $files := .Files.Glob "dashboards/*.json" }}
{{- if $files }}
apiVersion: v1
kind: ConfigMapList
items:
{{- range $path, $fileContents := $files }}
{{- $dashboardName := regexReplaceAll "(^.*/)(.*)\\.json$" $path "${2}" }}
- apiVersion: v1
  kind: ConfigMap
  metadata:
    name: {{ printf "%s-%s" (include "prometheus-operator.fullname" $) $dashboardName | trunc 63 | trimSuffix "-" }}
    namespace: {{ template "prometheus-operator.namespace" . }}
    labels:
      {{- if $.Values.grafana.sidecar.dashboards.label }}
      {{ $.Values.grafana.sidecar.dashboards.label }}: "1"
      {{- end }}
      app: {{ template "prometheus-operator.name" $ }}-grafana
{{ include "prometheus-operator.labels" $ | indent 6 }}
  data:
    {{ $dashboardName }}.json: {{ $.Files.Get $path | toJson }}
{{- end }}
{{- end }}

请注意,ConfigMap 的大小可能会受到限制: https ://stackoverflow.com/a/53015758/4252480

于 2020-07-03T13:53:24.150 回答
1

在 2021 年最新版本的kube-prometheus-stack图表中,根据github 上的这个答案,您应该只创建一个带有仪表板数据和正确标签的 configmap,它将由 grafana pod 中的 sidecar 检查。

例子:

apiVersion: v1
kind: ConfigMap
metadata:
  name: grafana-dashboards-custom-1
  namespace: monitoring
  labels:
     grafana_dashboard: "1"
     prometheus: my-value
     release: prometheus

data:
  app-status.json: |-
    {
    "annotations": {
        "list": [
        {

prometheus: my-value来自这个掌舵图值:

prometheus:
  prometheusSpec:
    serviceMonitorSelector:
      matchLabels:
        prometheus: my-value
于 2021-11-24T12:12:22.673 回答