将对象数组传递给Helm

问题描述 投票:0回答:1

我是 Helm 新手,请参阅 Helm 图表 value.yml,其中包含以下条目:

extraEmptyDirMounts: []
  # - name: provisioning-notifiers
  #   mountPath: /etc/grafana/provisioning/notifiers

我一生都无法弄清楚如何将其传递出去:

  - name: extraEmptyDirMounts
    value: ???

我用谷歌搜索了一下,但还没有找到一个明确的例子,因为它看起来很常见。

kubernetes-helm helm3
1个回答
0
投票

您的问题有点不清楚,您想向

extraEmptyDirMounts
添加多个项目吗?如果是,那么您可以使用不同的值重复注释掉的部分。

例如

extraEmptyDirMounts:
  - name: provisioning-notifiers
    mountPath: /etc/grafana/provisioning/notifiers
  - name: another-entry
    mountPath: /etc/another/path/value
© www.soinside.com 2019 - 2024. All rights reserved.