-
Notifications
You must be signed in to change notification settings - Fork 352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Adapt Knative service definition to new KnativeEnvironment definition #1724
Conversation
CamelSource controller creates CamelEnvironment with the old Host and Port fields, so this is more involved. |
@astefanutti @nicolaferraro should we bring back the host & port on the runtime part till we change the CamelSource ? |
It might be possible to do the conversion in the Knative trait. I'm exploring that approach. Even if that is temporary, I'd like to fix CI tests to validate other PRs. |
Thanks, I'll change the approach for CamelSource 0.19 |
Now that I've got the CamelSource tests working, the It seems the path part gets duplicated for some reasons:
|
@astefanutti that could be related to a latest change on the runtime so if you set both the |
So, I think there are changes in runtime that should make tests not to pass the "yaks" job.. but I see it green. So I've noticed that only two out of 4 dirs are executed by Yaks? Any idea why @christophd ? |
@nicolaferraro @christophd YAKS call from the Knative workflow had to be changed from an all directories to an include directories with e5fdc4b#diff-8bd69437e2586424cb7447c8eed690e7R320-R321. Ideally, the monitoring tests, that can only be run on OpenShift 4, should be excluded, but it seems there is no way to exclude a particular directory from the YAKS CLI. |
@lburgazzoli Thanks, must be that indeed:
Does the runtime expect the URL to be path-less or should the |
@astefanutti no it assumes that if you provide a path, that info should be used to compute the full URI so you either provide a full |
@lburgazzoli thanks, I've removed the redundant |
This PR takes into account the changes introduced in apache/camel-k-runtime#501.
It primary aims at fixing CI tests to validate other PRs.
Release Note