Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

test: Using the same step resources during tests execution as in final binary #818

Merged
merged 4 commits into from
Aug 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,18 @@ For more information and all configuration properties, see [Quarkus OpenTelemetr
For proper functionality with the Kaoto-ui, it is necessary to set `quarkus.http.cors.origins` configuration property with Kaoto-ui URL(s).
For more information and all configuration properties, see [Quarkus HTTP Reference](https://quarkus.io/guides/http-reference#quarkus-vertx-http-config-group-cors-cors-config_configuration)
> **_NOTE:_** When you run Kaoto-backend in the dev mode, all origins are accepted. (`origins: /.*/`)


### Steps catalog resources

**Actual versions of resources:**
* Kaoto camel components: **94ef243f574ad42b85dafe59b3d36858c47fcd38**
* Kaoto view definitions: **94aae37dee4356d51ac34bfb757eb43a85ad2c0a**
* Camel-connectors: **3.21.0**
* Camel-connectors: **3.21.0**

#### Updating step resources
The repository contains steps repositories zip files which are bundled with Kaoto-backend during building.
For upgrading those resources, run `update-resources.sh` script.

## Developing Kaoto

Expand All @@ -65,8 +76,8 @@ The API static swagger documentation is on https://kaotoio.github.io/kaoto-back

You have to install in your machine

* Maven >= 3.6
* JDK >= 17
* Maven >= 3.6
* JDK >= 17

### Building

Expand Down
Binary file modified api/src/main/resources/camel-kamelets-3.21.0.jar
Binary file not shown.
12 changes: 4 additions & 8 deletions api/src/test/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,13 @@ repository:
step:
jar:
-
url: "https://repo1.maven.org/maven2/org/apache/camel/kamelets/camel-kamelets/3.21.0/camel-kamelets-3.21.0.jar"
url: "resource://camel-kamelets-3.21.0.jar"
if-no-cluster: false
- url: "resource://camel-connectors-3.21.0.zip"
git:
-
url: "https://github.com/KaotoIO/camel-component-metadata.git"
- url: "resource://camel-component-metadata.zip"
viewdefinition:
git:
-
url: "https://github.com/KaotoIO/kaoto-viewdefinition-catalog.git"
tag: "main"
jar:
- url: "resource://view-definition.zip"

crd:
default: "KameletBinding"
Loading