Rename OverlayTranformer to PatchTransformer.

This commit is contained in:
jregan
2018-06-10 11:23:47 -07:00
parent 4f3f76addd
commit d06620c74d
4 changed files with 33 additions and 33 deletions

View File

@@ -230,7 +230,7 @@ func (a *applicationImpl) subApp() ([]Application, error) {
func (a *applicationImpl) newTransformer(patches []*resource.Resource) (transformers.Transformer, error) {
ts := []transformers.Transformer{}
ot, err := transformers.NewOverlayTransformer(patches)
ot, err := transformers.NewPatchTransformer(patches)
if err != nil {
return nil, err
}