-
Notifications
You must be signed in to change notification settings - Fork 91
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
new stack for camel #497
Closed
Closed
new stack for camel #497
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
eaef681
new stack for camel
brunoNetId a6122fd
removed unnecessary env variable
brunoNetId 6a3223f
added new Camel stack codeowner
brunoNetId 18f5e04
owner rectification while in trial period
brunoNetId d56c42a
try 2.3.0 as suggested during PR process
brunoNetId f1556a1
use schema 2.2.2
brunoNetId 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 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
This file contains 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,78 @@ | ||
schemaVersion: 2.2.0 | ||
metadata: | ||
name: camel | ||
displayName: Apache Camel Basics | ||
description: Gain familiarity with Apache Camel by getting hands-on following documented guidelines. | ||
icon: https://raw.githubusercontent.com/apache/camel/refs/heads/main/docs/img/logo-d.svg | ||
tags: | ||
- Java | ||
- Quarkus | ||
- Spring | ||
- Camel | ||
projectType: Camel | ||
language: Camel | ||
version: 1.0.0 | ||
website: https://camel.apache.org/ | ||
starterProjects: | ||
- name: devsandbox-camel | ||
git: | ||
checkoutFrom: | ||
revision: main | ||
remotes: | ||
origin: 'https://github.com/RedHat-Middleware-Workshops/devsandbox-camel.git' | ||
components: | ||
- name: tools | ||
container: | ||
image: quay.io/devfile/universal-developer-image:ubi8-304d6d4 | ||
memoryLimit: 3Gi | ||
endpoints: | ||
- exposure: none | ||
name: debug | ||
protocol: tcp | ||
targetPort: 5005 | ||
- exposure: public | ||
name: 8080-tcp | ||
protocol: http | ||
targetPort: 8080 | ||
volumeMounts: | ||
- name: m2 | ||
path: /home/user/.m2 | ||
- name: webapp | ||
container: | ||
image: quay.io/redhatintegration/tutorial-web-app:2.28.4-workshop-ubi8-nodejs12 | ||
env: | ||
- name: NODE_ENV | ||
value: production | ||
- name: THREESCALE_WILDCARD_DOMAIN | ||
value: local.localdomain | ||
- name: OPENSHIFT_VERSION | ||
value: '4' | ||
- name: WALKTHROUGH_LOCATIONS | ||
value: >- | ||
https://github.com/RedHat-Middleware-Workshops/devsandbox-camel?walkthroughsFolder=/docs/labs | ||
endpoints: | ||
- name: tutorial | ||
exposure: public | ||
targetPort: 5001 | ||
protocol: https | ||
secure: true | ||
memoryLimit: 512Mi | ||
mountSources: true | ||
volumeMounts: | ||
- name: tutorial-storage | ||
path: /opt/user-walkthroughs | ||
- name: m2 | ||
volume: | ||
size: 1G | ||
- name: tutorial-storage | ||
volume: | ||
size: 256Mi | ||
events: | ||
postStart: | ||
- set-camel-cli | ||
commands: | ||
- id: set-camel-cli | ||
exec: | ||
commandLine: 'source ~/.bashrc && jbang trust add https://github.com/apache/camel/ && jbang app install -Dcamel.jbang.version=4.8.0 camel@apache/camel && jbang camel@apache/camel plugin add kubernetes' | ||
component: tools | ||
|
This file contains 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,7 @@ | ||
name: camel | ||
description: Gain familiarity with Apache Camel by getting hands-on following documented guidelines. | ||
displayName: Apache Camel Basics | ||
icon: https://raw.githubusercontent.com/apache/camel/refs/heads/main/docs/img/logo-d.svg | ||
versions: | ||
- version: 1.0.0 | ||
default: true # should have one and only one default version |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can use a newer version; at least 2.2.2
The latest version is 2.3.0, @michael-valdron do you know if we can use 2.3.0 schema version for stacks?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@svor My two cents is to go with 2.2.2 unless anything from 2.3.0 is needed and revisit a new stack version that uses 2.3.0 later, but it is ultimately up to @brunoNetId, the stack owner.