diff --git a/examples/third_party_integration/helm/helm_test.go b/examples/third_party_integration/helm/helm_test.go index 342c02fc..f0b52580 100644 --- a/examples/third_party_integration/helm/helm_test.go +++ b/examples/third_party_integration/helm/helm_test.go @@ -47,7 +47,11 @@ func TestHelmChartRepoWorkflow(t *testing.T) { if err != nil { t.Fatal("failed to upgrade helm repo") } - err = manager.RunInstall(helm.WithName("nginx"), helm.WithNamespace(namespace), helm.WithReleaseName("nginx-stable/nginx-ingress")) + err = manager.RunInstall(helm.WithName("nginx"), helm.WithNamespace(namespace), + helm.WithReleaseName("nginx-stable/nginx-ingress"), + // pinning to a specific verision to make sure we will have reproducible executions + helm.WithVersion("0.17.0"), + ) if err != nil { t.Fatal("failed to install nginx Helm chart") }