You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2018/11/26 10:27:45 UTC

[camel-k] 03/03: fix issue with owned resources

This is an automated email from the ASF dual-hosted git repository.

nferraro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 03bcfd872e4e55866f9ef2ff4a6df40f66938d4d
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Sun Nov 25 00:36:02 2018 +0100

    fix issue with owned resources
---
 pkg/trait/catalog.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pkg/trait/catalog.go b/pkg/trait/catalog.go
index 3eba945..4684202 100644
--- a/pkg/trait/catalog.go
+++ b/pkg/trait/catalog.go
@@ -85,28 +85,28 @@ func (c *Catalog) traitsFor(environment *Environment) []Trait {
 			c.tDependencies,
 			c.tService,
 			c.tRoute,
-			c.tOwner,
 			c.tBuilder,
 			c.tSpringBoot,
 			c.tDeployment,
+			c.tOwner,
 		}
 	case v1alpha1.TraitProfileKubernetes:
 		return []Trait{
 			c.tDependencies,
 			c.tService,
 			c.tIngress,
-			c.tOwner,
 			c.tBuilder,
 			c.tSpringBoot,
 			c.tDeployment,
+			c.tOwner,
 		}
 	case v1alpha1.TraitProfileKnative:
 		return []Trait{
 			c.tDependencies,
 			c.tKnative,
-			c.tOwner,
 			c.tBuilder,
 			c.tSpringBoot,
+			c.tOwner,
 		}
 	}