Helm:我需要图表中的依赖项,但我只有模板/

2024-05-12 08:59:41 发布

您现在位置:Python中文网/ 问答频道 /正文

所以我有这个文件结构(取自https://helm.sh/docs/topics/charts/):

wordpress/
  Chart.yaml          # A YAML file containing information about the chart
  LICENSE             # OPTIONAL: A plain text file containing the license for the chart
  README.md           # OPTIONAL: A human-readable README file
  values.yaml         # The default configuration values for this chart
  values.schema.json  # OPTIONAL: A JSON Schema for imposing a structure on the values.yaml file
  charts/             # A directory containing any charts upon which this chart depends.
  crds/               # Custom Resource Definitions
  templates/          # A directory of templates that, when combined with values,
                      # will generate valid Kubernetes manifest files.
  templates/NOTES.txt # OPTIONAL: A plain text file containing short usage notes

我只有用.yaml文件填充的模板/文件夹。我想为Python使用一个库avionix,它需要图表中的依赖项/(docs

因此,我的问题是:如何使用模板中的.yaml/并将它们用作库(avionix)所需的图表中的图表,以便仅从本地repo执行this段代码

我是海图和avionix的新手,很抱歉这个简单的问题:)


Tags: 文件theyamldocsforchart图表this