mirror of
https://github.com/helm/helm.git
synced 2026-04-24 07:37:48 -04:00
fix: added resource info into the validation error
Signed-off-by: Timofey Kirillov <timofey.kirillov@flant.com>
This commit is contained in:
parent
b6a04cfbd5
commit
7f68bfa1fa
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue