在github动作中测试头盔图表

时间:2020-02-02 22:09:29

标签: testing kubernetes kubernetes-helm

如何将其他values.yaml文件添加到helm/chart-testing-action

类似helm lint -f my-values.yaml

1 个答案:

答案 0 :(得分:1)

您可以使用--values或--set向图表添加其他值。

Example:

helm install helm/chart-testing-action  -f <Value file>

or 

helm install helm/chart-testing-action --values <Value file>