gpt4 book ai didi

kubernetes - 从我的应用程序Helm图表中配置第三方Helm图表

转载 作者:行者123 更新时间:2023-12-03 22:26:54 24 4
gpt4 key购买 nike

我似乎在任何地方都找不到任何明确的信息,但是在Helm图表中是否可能需要第三方(例如stable/jenkins)并指定配置值?

我看到的所有示例都是直接运行helm install命令的,但是我希望能够将其配置为应用程序的一部分。

最佳答案

作为回答,@ desaintmartin在Slack中向我介绍了这些文档:

  • Subcharts and Globals
  • Requirements
  • Helm Dependencies

  • 这导致我找到 specific part I was looking for,通过指定图表名称作为父 values.yaml中的键,父图表可以覆盖子图表。

    在应用程序图表的 requirements.yaml中:
    dependencies:
    - name: jenkins
    # Can be found with "helm search jenkins"
    version: '0.18.0'
    # This is the binaries repository, as documented in the GitHub repo
    repository: 'https://kubernetes-charts.storage.googleapis.com/'

    跑:
    helm dependency update

    在应用程序图表的 values.yaml中:
    # ...other normal config values

    # Name matches the sub-chart
    jenkins:
    # This will be override "someJenkinsConfig" in the "jenkins" sub-chart
    someJenkinsConfig: value

    关于kubernetes - 从我的应用程序Helm图表中配置第三方Helm图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52552876/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com