forked from devfile/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspring-boot-http-booster-devfile.yaml
105 lines (105 loc) · 3.1 KB
/
spring-boot-http-booster-devfile.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
schemaVersion: 2.0.0
metadata:
name: spring-boot-http-booster
type: workspace
projects:
- name: spring-boot-http-booster
git:
remotes:
origin: https://github.com/snowdrop/spring-boot-http-booster
checkoutFrom:
revision: master
components:
- name: java-support
plugin:
id: redhat/java8/latest
components:
- name: vscode-java
container:
memoryLimit: 2Gi
- name: m2
volume:
size: 2G
- name: dependency-analytics
plugin:
id: redhat/dependency-analytics/latest
- name: maven-tooling
container:
image: registry.redhat.io/codeready-workspaces/stacks-java-rhel8:2.1
mountSources: true
memoryLimit: 768Mi
env:
- name: JAVA_OPTS
value: >-
-XX:MaxRAMPercentage=50.0 -XX:+UseParallelGC -XX:MinHeapFreeRatio=10
-XX:MaxHeapFreeRatio=20 -XX:GCTimeRatio=4
-XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true
-Xms20m -Djava.security.egd=file:/dev/./urandom -Duser.home=/home/jboss
- name: MAVEN_OPTS
value: $(JAVA_OPTS)
endpoints:
- name: 8080-tcp
targetPort: 8080
exposure: public
volumeMounts:
- name: m2
path: /home/jboss/.m2
commands:
- id: build
exec:
component: maven
commandLine: mvn -Duser.home=${HOME} -DskipTests clean install
workingDir: '${PROJECTS_ROOT}/spring-boot-http-booster'
env:
- name: MAVEN_OPTS
value: "-Xmx200m"
- id: debug remote java application
vscodeLaunch:
inlined: |
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug (Attach) - Remote",
"request": "attach",
"hostName": "localhost",
"port": 8000
}]
}
- id: run
exec:
component: maven
commandLine: 'mvn -Duser.home=${HOME} spring-boot:run'
workingDir: '${PROJECTS_ROOT}/spring-boot-http-booster'
env:
- name: MAVEN_OPTS
value: "-Xmx200m"
- id: debug
exec:
component: maven
commandLine: >-
mvn -Duser.home=${HOME} spring-boot:run -Drun.jvmArguments="-Xdebug
-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000"
workingDir: '${PROJECTS_ROOT}/spring-boot-http-booster'
- id: test
exec:
component: maven
commandLine: 'mvn -Duser.home=${HOME} verify'
workingDir: '${PROJECTS_ROOT}/spring-boot-http-booster'
env:
- name: MAVEN_OPTS
value: "-Xmx200m"
- id: dependency-analysis
exec:
component: maven
workingDir: '${PROJECTS_ROOT}/spring-boot-http-booster'
commandLine: >-
${HOME}/stack-analysis.sh -f
${PROJECTS_ROOT}/spring-boot-http-booster/pom.xml -p
${PROJECTS_ROOT}/spring-boot-http-booster
- id: deploy to OpenShift
exec:
component: maven
commandLine: 'mvn fabric8:deploy -Popenshift -DskipTests'
workingDir: '${PROJECTS_ROOT}/spring-boot-http-booster'