upgrade kustomize to v4.1.3

Signed-off-by: Gautier Delorme <gautier.delorme@gmail.com>
This commit is contained in:
Gautier Delorme
2021-05-20 20:46:16 +02:00
committed by Gautier Delorme
parent 0b80fbf978
commit ac753f44cc
99 changed files with 956 additions and 6548 deletions

View File

@@ -42,7 +42,7 @@ type FunctionFilter struct {
DeferFailure bool
// results saves the results emitted from Run
results *yaml.RNode
Results *yaml.RNode
// exit saves the error returned from Run
exit error
@@ -250,7 +250,7 @@ func (c *FunctionFilter) doResults(r *kio.ByteReader) error {
}
if r.Results != nil {
c.results = r.Results
c.Results = r.Results
}
return nil
}