lsergio commented on issue #6182: URL: https://github.com/apache/camel-k/issues/6182#issuecomment-2977703918
After some troubleshooting, I see that is caused by the [kitMatches](https://github.com/apache/camel-k/blob/release-2.5.x/pkg/controller/integration/kits.go#L171) function returning false. And it does so because the runtime versions do not match: ``` version := kit.Status.RuntimeVersion # version is empty here if version == "" { // Defaults with the version that is going to be set during the kit initialization version = defaults.DefaultRuntimeVersion #version changes to 3.15.2 here } if version != target.Status.RuntimeVersion { # returns false because version is 3.15.2 and target.Status.RuntimeVersion is 3.15.3 return false, nil } If I change the runtime version on my Integration to 3.15.2, the issue does not reproduce -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
