mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-09-18 21:28:08 +00:00
WrapErrorWithFile reads the path and index annotations into local variables, then passes those values back through meta.Annotations as if they were keys. The second lookup almost always misses, so every error returned by inpututil.MapInputs and MapInputsE is prefixed with " []: " instead of naming the file and document that failed. The legacy fallback for the index also read LegacyPathAnnotation rather than LegacyIndexAnnotation, so resources carrying only the legacy annotations resolved the index to the file path. Use the values that were already resolved, and read the index from LegacyIndexAnnotation. This matches kioutil.GetFileAnnotations, which resolves the same pair of annotations correctly. Adds a test for the internal and legacy annotation forms; the package previously had none. Signed-off-by: Pragalva Sapkota <sapkotapragalva@gmail.com>