Skip to content

Commit 7bd7f4e

Browse files
committed
update devfiles to match new schema
new schema is introduced in devfile/api#122
1 parent 8f5e860 commit 7bd7f4e

File tree

5 files changed

+56
-53
lines changed

5 files changed

+56
-53
lines changed

devfiles/java-maven/devfile.yaml

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ metadata:
33
name: java-maven
44
version: 1.0.0
55
components:
6-
- container:
7-
name: tools
6+
- name: tools
7+
container:
88
image: quay.io/eclipse/che-java11-maven:nightly
99
memoryLimit: 512Mi
1010
mountSources: true
@@ -14,25 +14,25 @@ components:
1414
volumeMounts:
1515
- name: m2
1616
path: /home/user/.m2
17-
- volume:
18-
name: m2
17+
- name: m2
18+
volume: {}
1919
commands:
20-
- exec:
21-
id: mvn-package
20+
- id: mvn-package
21+
exec:
2222
component: tools
2323
commandLine: "mvn package"
2424
group:
2525
kind: build
2626
isDefault: true
27-
- exec:
28-
id: run
27+
- id: run
28+
exec:
2929
component: tools
3030
commandLine: "java -jar target/*.jar"
3131
group:
3232
kind: run
3333
isDefault: true
34-
- exec:
35-
id: debug
34+
- id: debug
35+
exec:
3636
component: tools
3737
commandLine: "java -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=${DEBUG_PORT},suspend=n -jar target/*.jar"
3838
group:

devfiles/java-openliberty/devfile.yaml

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ metadata:
66
starterProjects:
77
- name: user-app
88
git:
9-
location: 'https://github.com/OpenLiberty/application-stack.git'
9+
remotes:
10+
origin: 'https://github.com/OpenLiberty/application-stack.git'
1011
sparseCheckoutDir: /templates/default
11-
branch: master
1212
components:
13-
- container:
14-
name: devruntime
13+
- name: devruntime
14+
container:
1515
# this custom image source can be found in the baseimage section of the repo at:
1616
# https://github.com/OpenLiberty/application-stack.git
1717
image: ajymau/java-openliberty-odo:0.1
@@ -24,8 +24,8 @@ commands:
2424
# devInit currently not functional in odo devfile v2 - will re-enable when available
2525
# as a workaround, moved devInit command to the devBuild command since our stack
2626
# runs devBuild once only on forst push (similar to devInit intended function)
27-
# - exec:
28-
# id: devInit
27+
# - id: devInit
28+
# exec:
2929
# component: appsodyrun
3030
# commandLine: echo "temp -> devInit cmd currently on the one-time devBld cmd"
3131
# workingDir: /projects/user-app
@@ -34,8 +34,8 @@ commands:
3434
# group:
3535
# kind: build
3636
# isDefault: true
37-
- exec:
38-
id: devBuild
37+
- id: devBuild
38+
exec:
3939
component: devruntime
4040
commandLine: if [ -e /projects/.disable-bld-cmd ];
4141
then
@@ -53,8 +53,8 @@ commands:
5353
group:
5454
kind: build
5555
isDefault: true
56-
- exec:
57-
id: devRun
56+
- id: devRun
57+
exec:
5858
component: devruntime
5959
commandLine: mvn -Dmaven.repo.local=/mvn/repository -Dliberty.runtime.version=20.0.0.6 -DhotTests=true liberty:dev
6060
workingDir: /projects

devfiles/java-quarkus/devfile.yaml

+12-11
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ metadata:
66
starterProjects:
77
- name: quarkus-ex
88
git:
9-
location: https://github.com/odo-devfiles/quarkus-ex
9+
remotes:
10+
origin: https://github.com/odo-devfiles/quarkus-ex
1011
components:
11-
- container:
12-
name: tools
12+
- name: tools
13+
container:
1314
image: quay.io/eclipse/che-quarkus:nightly
1415
memoryLimit: 1512Mi
1516
mountSources: true
@@ -19,17 +20,17 @@ components:
1920
endpoints:
2021
- name: '8080/http'
2122
targetPort: 8080
22-
- volume:
23-
name: m2
23+
- name: m2
24+
volume:
2425
size: 3Gi
2526
commands:
26-
- exec:
27-
id: init-compile
27+
- id: init-compile
28+
exec:
2829
component: tools
2930
commandLine: "mvn compile"
3031
workingDir: $PROJECTS_ROOT
31-
- exec:
32-
id: dev-run
32+
- id: dev-run
33+
exec:
3334
component: tools
3435
commandLine: "mvn quarkus:dev"
3536
attributes:
@@ -38,8 +39,8 @@ commands:
3839
kind: run
3940
isDefault: true
4041
workingDir: $PROJECTS_ROOT
41-
- exec:
42-
id: dev-debug
42+
- id: dev-debug
43+
exec:
4344
component: tools
4445
commandLine: "mvn quarkus:dev -Ddebug=${DEBUG_PORT}"
4546
attributes:

devfiles/java-springboot/devfile.yaml

+12-11
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ metadata:
55
starterProjects:
66
- name: springbootproject
77
git:
8-
location: "https://github.com/odo-devfiles/springboot-ex.git"
8+
remotes:
9+
origin: "https://github.com/odo-devfiles/springboot-ex.git"
910
components:
10-
- container:
11-
name: tools
11+
- name: tools
12+
container:
1213
image: maysunfaisal/springbootbuild
1314
memoryLimit: 768Mi
1415
command: ['tail']
@@ -17,8 +18,8 @@ components:
1718
volumeMounts:
1819
- name: springbootpvc
1920
path: /data
20-
- container:
21-
name: runtime
21+
- name: runtime
22+
container:
2223
image: maysunfaisal/springbootruntime
2324
memoryLimit: 768Mi
2425
command: ['tail']
@@ -30,20 +31,20 @@ components:
3031
volumeMounts:
3132
- name: springbootpvc
3233
path: /data
33-
- volume:
34-
name: springbootpvc
34+
- name: springbootpvc
35+
volume:
3536
size: 4Gi
3637
commands:
37-
- exec:
38-
id: devBuild
38+
- id: devBuild
39+
exec:
3940
component: tools
4041
commandLine: "/artifacts/bin/build-container-full.sh"
4142
workingDir: /projects
4243
group:
4344
kind: build
4445
isDefault: true
45-
- exec:
46-
id: devRun
46+
- id: devRun
47+
exec:
4748
component: runtime
4849
commandLine: "/artifacts/bin/start-server.sh"
4950
workingDir: /

devfiles/nodejs/devfile.yaml

+12-11
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ metadata:
77
starterProjects:
88
- name: nodejs-starter
99
git:
10-
location: "https://github.com/odo-devfiles/nodejs-ex.git"
10+
remotes:
11+
origin: "https://github.com/odo-devfiles/nodejs-ex.git"
1112
components:
12-
- container:
13-
name: runtime
13+
- name: runtime
14+
container:
1415
image: registry.access.redhat.com/ubi8/nodejs-12:1-45
1516
memoryLimit: 1024Mi
1617
mountSources: true
@@ -19,32 +20,32 @@ components:
1920
- name: http-3000
2021
targetPort: 3000
2122
commands:
22-
- exec:
23-
id: install
23+
- id: install
24+
exec:
2425
component: runtime
2526
commandLine: npm install
2627
workingDir: /project
2728
group:
2829
kind: build
2930
isDefault: true
30-
- exec:
31-
id: run
31+
- id: run
32+
exec:
3233
component: runtime
3334
commandLine: npm start
3435
workingDir: /project
3536
group:
3637
kind: run
3738
isDefault: true
38-
- exec:
39-
id: debug
39+
- id: debug
40+
exec:
4041
component: runtime
4142
commandLine: npm run debug
4243
workingDir: /project
4344
group:
4445
kind: debug
4546
isDefault: true
46-
- exec:
47-
id: test
47+
- id: test
48+
exec:
4849
component: runtime
4950
commandLine: npm test
5051
workingDir: /project

0 commit comments

Comments
 (0)