我正在安装prometheus运算符,我使用了默认的 Helm 图并通过以下命令进行安装:

helm install po stable/prometheus-operator -n mon -f values.yaml

使用this图表。

安装成功,但是没有从values.yaml文件中获取值,我在做什么错?例如,我们看不到警报管理器的两个副本(最小可复制)

猫的值(value)观
prometheus-operator:
  defaultRules:
  grafana:
    enabled: true
  alertmanager:
    alertmanagerSpec:
      replicas: 2

值yaml位于我执行命令的文件夹中。我正在使用 Helm 3

最佳答案

可以肯定的是,它看起来应该像这样:

grafana:
  enabled: true
alertmanager:
  enabled: true
  alertmanagerSpec:
    replicas: 2

关于azure - Helm不接受值YAML,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59466542/

10-16 20:05