From 84df429582070080befe557f386f9bf0d7962d48 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 07:45:47 +0000 Subject: [PATCH] Bump github.com/mittwald/go-helm-client from 0.13.2 to 0.13.3 in /tests Bumps [github.com/mittwald/go-helm-client](https://github.com/mittwald/go-helm-client) from 0.13.2 to 0.13.3. - [Release notes](https://github.com/mittwald/go-helm-client/releases) - [Commits](https://github.com/mittwald/go-helm-client/compare/v0.13.2...v0.13.3) --- updated-dependencies: - dependency-name: github.com/mittwald/go-helm-client dependency-version: 0.13.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- tests/go.mod | 2 +- tests/go.sum | 4 ++-- tests/vendor/github.com/mittwald/go-helm-client/client.go | 2 ++ tests/vendor/github.com/mittwald/go-helm-client/types.go | 5 +++++ tests/vendor/modules.txt | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/tests/go.mod b/tests/go.mod index ef715e918..a1e68c892 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -4,7 +4,7 @@ go 1.26.3 require ( github.com/gruntwork-io/terratest v0.47.2 - github.com/mittwald/go-helm-client v0.13.2 + github.com/mittwald/go-helm-client v0.13.3 github.com/onsi/ginkgo/v2 v2.32.1 github.com/onsi/gomega v1.42.1 github.com/stretchr/testify v1.12.0 diff --git a/tests/go.sum b/tests/go.sum index 1a94dacd6..16b9df92c 100644 --- a/tests/go.sum +++ b/tests/go.sum @@ -265,8 +265,8 @@ github.com/mitchellh/hashstructure v1.1.0 h1:P6P1hdjqAAknpY/M1CGipelZgp+4y9ja9km github.com/mitchellh/hashstructure v1.1.0/go.mod h1:xUDAozZz0Wmdiufv0uyhnHkUTN6/6d8ulp4AwfLKrmA= github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ= github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= -github.com/mittwald/go-helm-client v0.13.2 h1:rEhfhxs0qbgkKIYHfNWPloKd/SgIll3ynAqRWNt8w6E= -github.com/mittwald/go-helm-client v0.13.2/go.mod h1:tIEzWYuoPbwpc1ktZM1aSSwCS2K3ilovcYVNqn5ouY4= +github.com/mittwald/go-helm-client v0.13.3 h1:4WSbtdgpijoY+iFaZkFRqc2LstfmbJiOUJ8RwsakEw8= +github.com/mittwald/go-helm-client v0.13.3/go.mod h1:tIEzWYuoPbwpc1ktZM1aSSwCS2K3ilovcYVNqn5ouY4= github.com/moby/spdystream v0.5.1 h1:9sNYeYZUcci9R6/w7KDaFWEWeV4LStVG78Mpyq/Zm/Y= github.com/moby/spdystream v0.5.1/go.mod h1:xBAYlnt/ay+11ShkdFKNAG7LsyK/tmNBVvVOwrfMgdI= github.com/moby/term v0.5.2 h1:6qk3FJAFDs6i/q3W/pQ97SX192qKfZgGjCQqfCJkgzQ= diff --git a/tests/vendor/github.com/mittwald/go-helm-client/client.go b/tests/vendor/github.com/mittwald/go-helm-client/client.go index 05c3b09f2..371b9f475 100644 --- a/tests/vendor/github.com/mittwald/go-helm-client/client.go +++ b/tests/vendor/github.com/mittwald/go-helm-client/client.go @@ -971,6 +971,7 @@ func mergeInstallOptions(chartSpec *ChartSpec, installOptions *action.Install) { installOptions.WaitForJobs = chartSpec.WaitForJobs installOptions.Labels = chartSpec.Labels installOptions.ServerSideApply = chartSpec.ServerSideApplyEnabled() + installOptions.TakeOwnership = chartSpec.TakeOwnership } // mergeUpgradeOptions merges values of the provided chart to helm upgrade options used by the client. @@ -994,6 +995,7 @@ func mergeUpgradeOptions(chartSpec *ChartSpec, upgradeOptions *action.Upgrade) { upgradeOptions.WaitForJobs = chartSpec.WaitForJobs upgradeOptions.Labels = chartSpec.Labels upgradeOptions.ServerSideApply = chartSpec.ServerSideApply + upgradeOptions.TakeOwnership = chartSpec.TakeOwnership } // mergeUninstallReleaseOptions merges values of the provided chart to helm uninstall options used by the client. diff --git a/tests/vendor/github.com/mittwald/go-helm-client/types.go b/tests/vendor/github.com/mittwald/go-helm-client/types.go index ede7cf509..855c95a02 100644 --- a/tests/vendor/github.com/mittwald/go-helm-client/types.go +++ b/tests/vendor/github.com/mittwald/go-helm-client/types.go @@ -176,6 +176,11 @@ type ChartSpec struct { // ForceReplace causes server-side apply to force conflicts ("Overwrite value, become sole manager") // +optional ForceConflicts bool `json:"forceConflicts,omitempty"` + // TakeOwnership ignores the check for helm annotations and adopts existing + // cluster resources into the release (helm --take-ownership). + // Applies to install and upgrade. + // +optional + TakeOwnership bool `json:"takeOwnership,omitempty"` // ResetValues indicates whether to reset the values.yaml file during installation. // +optional ResetValues bool `json:"resetValues,omitempty"` diff --git a/tests/vendor/modules.txt b/tests/vendor/modules.txt index cd09afeb0..044bdbed6 100644 --- a/tests/vendor/modules.txt +++ b/tests/vendor/modules.txt @@ -405,7 +405,7 @@ github.com/mitchellh/hashstructure # github.com/mitchellh/reflectwalk v1.0.2 ## explicit github.com/mitchellh/reflectwalk -# github.com/mittwald/go-helm-client v0.13.2 +# github.com/mittwald/go-helm-client v0.13.3 ## explicit; go 1.26.3 github.com/mittwald/go-helm-client github.com/mittwald/go-helm-client/values