helm 升级失败并显示 "function "X“未定义”

helm upgrade fails with "function "X" not defined"

我正在尝试升级 helm chart,

我收到错误函数 "pod" not defined 这是有道理的,因为我真的没有这样的函数。

"pod" 来自 json 文件,我将其转换为配置映射,helm 将此值作为函数读取,而不是作为 [=32 的一部分的直字符串读取=] 文件.

这是我的 configmap 的一个片段:

# Generated from 'pods' from https://raw.githubusercontent.com/coreos/prometheus-operator/master/contrib/kube-prometheus/manifests/grafana-dashboardDefinitions.yaml
# Do not change in-place! In order to change this file first read following link:
# https://github.com/helm/charts/tree/master/stable/prometheus-operator/hack
{{- if and .Values.grafana.enabled .Values.grafana.defaultDashboardsEnabled }}
apiVersion: v1
kind: ConfigMap
metadata:
  name: {{ printf "%s-%s" (include "prometheus-operator.fullname" $) "services-health" | trunc 63 | trimSuffix "-" }}
  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 4 }}
data:
  services-health.json: |-
    {
      "annotations": {
        "list": [
          {
            "builtIn": 1,
            "datasource": "-- Grafana --",
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
      "targets": [
        {
          "expr": "{__name__=~\"kube_pod_container_status_ready\", container=\"aggregation\",kubernetes_namespace=\"default\",chart=\"\"}",
          "format": "time_series",
          "instant": false,
          "intervalFactor": 2,
          "legendFormat": "{{pod}}",
          "refId": "A"
        }
}
{{- end }}

我得到的错误来自这一行:"legendFormat": "{{pod}}",

这是我得到的错误:

helm upgrade --dry-run prometheus-operator-chart /home/ubuntu/infra-devops/helm/vector-chart/prometheus-operator-chart/ Error: UPGRADE FAILED: parse error in "prometheus-operator/templates/grafana/dashboards/services-health.yaml": template: prometheus-operator/templates/grafana/dashboards/services-health.yaml:1213: function "pod" not defined

我试图逃脱它,但没有任何效果。 有人知道我如何解决这个问题吗?

可以使用 backticks 转义 gotpl 占位符。例如,在您的场景中,您可以编写 {{` {{ pod }} `}}.

而不是使用 {{ pod }}

将您的仪表板 json 移到一个单独的文件中,假设将其命名为 dashboard.json。 然后在您的 configmap 文件中:不是内联列出 json,而是通过键入以下内容引用 dashboard.json 文件:

data:
  services-health.json: |-
{{ .Files.Get "dashboard.json" | indent 4 }}

那就解决问题了!

将 json 文件保留在配置映射之外并在配置映射中获取它是可行的,但请确保在与 helm 一起使用时将 json 文件保留在模板目录之外,否则它会尝试搜索 {{ pod }} .

在我的实验中,我替换了 "legendFormat": "{{ pod }}","legendFormat": "{{ "{{ pod }}" }}", 并且很高兴 return 我需要的语法(专门针对 grafana-operator Grafana Dashboard CRD)。