Merge pull request #10334 from werf/fix-resource-validation-error

fix: added resource info into the validation error
pull/10350/head
Matthew Fisher 3 years ago committed by GitHub
commit 27b7cfcddb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -51,7 +51,7 @@ func existingResourceConflict(resources kube.ResourceList, releaseName, releaseN
if apierrors.IsNotFound(err) {
return nil
}
return errors.Wrap(err, "could not get information about the resource")
return errors.Wrapf(err, "could not get information about the resource %s", resourceString(info))
}
// Allow adoption of the resource if it is managed by Helm and is annotated with correct release name and namespace.

Loading…
Cancel
Save