diff --git a/charts/Chart.yaml b/charts/Chart.yaml index ed9200b3..fca0fdeb 100644 --- a/charts/Chart.yaml +++ b/charts/Chart.yaml @@ -13,7 +13,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.0 +version: 0.3.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/internal/controller/clusteraddon_controller.go b/internal/controller/clusteraddon_controller.go index bb7b1e64..e31b66c3 100644 --- a/internal/controller/clusteraddon_controller.go +++ b/internal/controller/clusteraddon_controller.go @@ -1254,7 +1254,7 @@ func buildTemplateFromClusterAddonValues(ctx context.Context, addonValuePath str // The return yaml file path will be /tmp/downloads/cluster-stacks/myprovider-myclusterstack-1-26-v2/myprovider-myclusterstack-1-26-v2.tgz.yaml. func helmTemplateClusterAddon(chartPath string, helmTemplate []byte, kubernetesVersion string) ([]byte, error) { helmCommand := "helm" - helmArgs := []string{"template", "--include-crds"} + helmArgs := []string{"template", "--include-crds", "--dependency-update"} input := bytes.NewBuffer(helmTemplate)