batazor
batazor

Reputation: 1002

Testing helm charts in github action

How do you add additional values.yaml files to helm/chart-testing-action?

Something like helm lint -f my-values.yaml.

Upvotes: 0

Views: 408

Answers (1)

Subramanian Manickam
Subramanian Manickam

Reputation: 1359

You can use --values or --set to add additional values to chart.

Example:

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

or 

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

Upvotes: 1

Related Questions