-
Notifications
You must be signed in to change notification settings - Fork 93
add kaoto project #589
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
Merged
+152
−2
Merged
add kaoto project #589
Changes from 2 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
a26c5b6
add kaoto project
maximilianoPizarro 87b20aa
kind build isDefault false
maximilianoPizarro de03232
added sha to container image
maximilianoPizarro 4649920
added kaoto to CODEOWNERS file
maximilianoPizarro 0fc0ce1
Order number is added to identify execution steps.
maximilianoPizarro 5dd1520
http to https and name endpoint
maximilianoPizarro 5e34401
added an empty line
maximilianoPizarro d6c8815
Merge branch 'devfile:main' into main
maximilianoPizarro c519cd6
Merge branch 'devfile:main' into main
maximilianoPizarro 2481ee4
Update .github/CODEOWNERS
maximilianoPizarro 5f4af16
Update .github/CODEOWNERS
maximilianoPizarro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
schemaVersion: 2.2.2 | ||
metadata: | ||
name: kaoto | ||
version: 2.5.0 | ||
description: The Integration Designer for Apache Camel | ||
displayName: Kaoto | ||
icon: https://raw.githubusercontent.com/KaotoIO/kaoto/refs/heads/main/packages/ui/src/assets/logo-kaoto.svg | ||
website: https://kaoto.io | ||
tags: | ||
- JavaScript | ||
- React | ||
- Quarkus | ||
- Camel | ||
- Podman | ||
language: JavaScript | ||
projectType: "Node.js" | ||
projects: | ||
- name: kaoto | ||
git: | ||
remotes: | ||
origin: 'https://github.com/KaotoIO/kaoto' | ||
checkoutFrom: | ||
revision: main | ||
components: | ||
- name: tools | ||
container: | ||
image: quay.io/devfile/universal-developer-image:latest | ||
memoryLimit: 8Gi | ||
memoryRequest: 1Gi | ||
cpuLimit: "2" | ||
cpuRequest: 200m | ||
env: | ||
- name: KUBEDOCK_PARAMS | ||
value: "--reverse-proxy --kubeconfig /home/user/.kube/config --initimage quay.io/agiertli/kubedock:0.13.0" | ||
- name: USE_JAVA17 | ||
value: "true" | ||
- value: /home/jboss/.m2 | ||
name: MAVEN_CONFIG | ||
- value: -Xmx4G -Xss128M -XX:MetaspaceSize=1G -XX:MaxMetaspaceSize=2G | ||
name: MAVEN_OPTS | ||
- name: KUBEDOCK_ENABLED | ||
value: 'true' | ||
- name: DOCKER_HOST | ||
value: 'tcp://127.0.0.1:2475' | ||
- name: TESTCONTAINERS_RYUK_DISABLED | ||
value: 'true' | ||
- name: TESTCONTAINERS_CHECKS_DISABLE | ||
value: 'true' | ||
endpoints: | ||
- exposure: none | ||
name: kubedock | ||
protocol: tcp | ||
targetPort: 2475 | ||
- exposure: public | ||
name: http-booster | ||
protocol: http | ||
maximilianoPizarro marked this conversation as resolved.
Show resolved
Hide resolved
|
||
targetPort: 8080 | ||
attributes: | ||
discoverable: true | ||
urlRewriteSupported: true | ||
- exposure: public | ||
name: kaoto | ||
protocol: http | ||
maximilianoPizarro marked this conversation as resolved.
Show resolved
Hide resolved
|
||
targetPort: 4173 | ||
attributes: | ||
discoverable: true | ||
urlRewriteSupported: true | ||
- exposure: internal | ||
name: debug | ||
protocol: http | ||
targetPort: 5005 | ||
volumeMounts: | ||
- name: m2 | ||
path: /home/user/.m2 | ||
- name: npm | ||
path: /home/user/.npm | ||
- name: m2 | ||
volume: | ||
size: 512Mi | ||
- name: npm | ||
volume: | ||
size: 512Mi | ||
commands: | ||
- id: yarn-install | ||
exec: | ||
label: 'Install Dependencies' | ||
component: tools | ||
workingDir: ${PROJECT_SOURCE} | ||
commandLine: 'yarn install' | ||
group: | ||
kind: build | ||
isDefault: true | ||
- id: build | ||
exec: | ||
label: 'Build' | ||
component: tools | ||
workingDir: ${PROJECT_SOURCE} | ||
commandLine: 'yarn workspace @kaoto/kaoto run build' | ||
group: | ||
kind: build | ||
isDefault: false | ||
- id: build-public-componets | ||
exec: | ||
label: 'build the public components' | ||
component: tools | ||
workingDir: ${PROJECT_SOURCE} | ||
commandLine: 'yarn workspace @kaoto/kaoto run build:lib' | ||
group: | ||
kind: build | ||
isDefault: false | ||
- id: build-camel-catalog-supporting-schemas | ||
exec: | ||
label: 'build the Camel Catalog and the supporting schemas' | ||
component: tools | ||
workingDir: ${PROJECT_SOURCE} | ||
commandLine: 'yarn workspace @kaoto/camel-catalog run build' | ||
group: | ||
kind: build | ||
isDefault: false | ||
- id: start-development-server | ||
exec: | ||
label: 'start the development server' | ||
component: tools | ||
workingDir: ${PROJECT_SOURCE} | ||
commandLine: 'yarn workspace @kaoto/kaoto run start --host' | ||
group: | ||
kind: run | ||
isDefault: true | ||
- id: start-storybook | ||
exec: | ||
label: 'run the storybook' | ||
component: tools | ||
workingDir: ${PROJECT_SOURCE} | ||
commandLine: 'yarn workspace @kaoto/kaoto-tests storybook' | ||
group: | ||
kind: run | ||
isDefault: false | ||
- id: start-with-docker | ||
exec: | ||
label: 'Running kaoto with Docker' | ||
component: tools | ||
workingDir: ${PROJECT_SOURCE} | ||
commandLine: 'podman run --rm -p 8080:8080 --name kaoto quay.io/kaotoio/kaoto-app:main' | ||
group: | ||
kind: run | ||
isDefault: false | ||
maximilianoPizarro marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.