rancher / hull

Keep your Helm charts afloat with comprehensive testing
Apache License 2.0
4 stars 5 forks source link

sub chart value tracking fix #34

Closed vardhaman22 closed 1 year ago

vardhaman22 commented 1 year ago
  1. while checking coverage for sub charts hull read the values of subcharts same as they are defined in the files. for exa to override the subchart values we need to set the values while adding template options as
    SetValue("tracing.jaeger.repository", "jaeger-all-in-one"). // here tracing is subchart name

    but for making hull to consider it for coverage following set value statement was needed

    SetValue("jaeger.repository", "jaeger-all-in-one").

    so a change is added so that hull read subchart values as .Values.subChartName.ActualValueKey