This is an automated email from the ASF dual-hosted git repository.
astefanutti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 4bf2200 fix: Affinity trait must run after the Knative Service trait
4bf2200 is described below
commit 4bf22004fc4861f271f2518b28ab2d9e183f5ba1
Author: Antonin Stefanutti <[email protected]>
AuthorDate: Fri Oct 1 10:12:17 2021 +0200
fix: Affinity trait must run after the Knative Service trait
---
pkg/trait/affinity.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/trait/affinity.go b/pkg/trait/affinity.go
index bd27846..dcb9c0c 100644
--- a/pkg/trait/affinity.go
+++ b/pkg/trait/affinity.go
@@ -53,7 +53,7 @@ type affinityTrait struct {
func newAffinityTrait() Trait {
return &affinityTrait{
- BaseTrait: NewBaseTrait("affinity", 1300),
+ BaseTrait: NewBaseTrait("affinity", 1500),
PodAffinity: BoolP(false),
PodAntiAffinity: BoolP(false),
}