This repository was archived by the owner on Apr 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdevfile.yaml
More file actions
178 lines (178 loc) · 5.93 KB
/
devfile.yaml
File metadata and controls
178 lines (178 loc) · 5.93 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
schemaVersion: 2.0.0
metadata:
name: java-jboss-eap-xp-bootable-jar
version: 1.0.0
displayName: JBoss EAP XP 2.0 Bootable Jar
description: Java stack with EAP XP 2.0 in bootable Jar mode, OpenJDK 11 and Maven 3.5
tags: ["RHEL8", "Java", "OpenJDK", "Maven", "EAP", "Microprofile", "EAP XP Bootable"]
projectType: "JBoss EAP XP"
language: "java"
website: https://access.redhat.com/products/red-hat-jboss-enterprise-application-platform/
starterProjects:
- name: microprofile-config
description: EAP XP 2.0 Eclipse Microprofile Config Quickstart
git:
checkoutFrom:
remote: jboss-developer
revision: xp-2.0.x
remotes:
jboss-developer: https://github.com/jboss-developer/jboss-eap-quickstarts.git
subDir: microprofile-config
- name: microprofile-fault-tolerance
description: EAP XP 2.0 Eclipse Microprofile Fault Tolerance Quickstart
git:
checkoutFrom:
remote: jboss-developer
revision: xp-2.0.x
remotes:
jboss-developer: https://github.com/jboss-developer/jboss-eap-quickstarts.git
subDir: microprofile-fault-tolerance
- name: microprofile-health
description: EAP XP 2.0 Eclipse Microprofile Health Quickstart
git:
checkoutFrom:
remote: jboss-developer
revision: xp-2.0.x
remotes:
jboss-developer: https://github.com/jboss-developer/jboss-eap-quickstarts.git
subDir: microprofile-health
- name: microprofile-jwt
description: EAP XP 2.0 Eclipse Microprofile JWT Quickstart
git:
checkoutFrom:
remote: jboss-developer
revision: xp-2.0.x
remotes:
jboss-developer: https://github.com/jboss-developer/jboss-eap-quickstarts.git
subDir: microprofile-jwt
- name: microprofile-metrics
description: EAP XP 2.0 Eclipse Microprofile Metrics Quickstart
git:
checkoutFrom:
remote: jboss-developer
revision: xp-2.0.x
remotes:
jboss-developer: https://github.com/jboss-developer/jboss-eap-quickstarts.git
subDir: microprofile-metrics
- name: microprofile-openapi
description: EAP XP 2.0 Eclipse Microprofile OpenAPI Quickstart
git:
checkoutFrom:
remote: jboss-developer
revision: xp-2.0.x
remotes:
jboss-developer: https://github.com/jboss-developer/jboss-eap-quickstarts.git
subDir: microprofile-openapi
- name: microprofile-opentracing
description: EAP XP 2.0 Eclipse Microprofile OpenTracing Quickstart
git:
checkoutFrom:
remote: jboss-developer
revision: xp-2.0.x
remotes:
jboss-developer: https://github.com/jboss-developer/jboss-eap-quickstarts.git
subDir: microprofile-opentracing
- name: microprofile-rest-client
description: EAP XP 2.0 Eclipse Microprofile REST Client Quickstart
git:
checkoutFrom:
remote: jboss-developer
revision: xp-2.0.x
remotes:
jboss-developer: https://github.com/jboss-developer/jboss-eap-quickstarts.git
subDir: microprofile-rest-client
components:
- name: jaeger
container:
image: quay.io/jaegertracing/all-in-one:1.21.0
memoryLimit: 128Mi
endpoints:
- name: 'tracing-ui'
targetPort: 16686
- name: eap-xp
container:
image: registry.access.redhat.com/ubi8/openjdk-11
memoryLimit: 1512Mi
mountSources: true
volumeMounts:
- name: m2-repository
path: /home/jboss/.m2/repository
env:
# Enabling Jaeger tracing
- name: WILDFLY_TRACING_ENABLED
value: 'true'
# Define the Jaeger service name
- name: JAEGER_SERVICE_NAME
value: 'microprofile-opentracing'
# Configure Jaeger traces
- name: JAEGER_REPORTER_LOG_SPANS
value: 'true'
- name: JAEGER_SAMPLER_TYPE
value: 'const'
- name: JAEGER_SAMPLER_PARAM
value: '1'
- name: GC_METASPACE_SIZE
value: '96'
- name: GC_MAX_METASPACE_SIZE
value: '256'
- name: JAVA_OPTS
value: '-Djava.security.egd=file:/dev/urandom'
- name: MVN_ARGS_APPEND
value: '-Pbootable-jar -s /home/jboss/.m2/settings.xml -Dmaven.repo.local=/home/jboss/.m2/repository -Dcom.redhat.xpaas.repo.jbossorg'
endpoints:
- name: 'http'
targetPort: 8080
- name: m2-repository
volume:
size: 3Gi
commands:
- id: build
exec:
component: eap-xp
commandLine: mvn ${MVN_ARGS_APPEND} clean package
workingDir: $PROJECTS_ROOT
group:
kind: build
isDefault: true
- id: run
exec:
component: eap-xp
commandLine: mvn ${MVN_ARGS_APPEND} -Dwildfly.bootable.arguments="-b=0.0.0.0" wildfly-jar:run
workingDir: $PROJECTS_ROOT
group:
kind: run
isDefault: true
- id: debug
exec:
component: eap-xp
commandLine: mvn ${MVN_ARGS_APPEND} -Dwildfly.bootable.arguments="-b=0.0.0.0" -Dwildfly.bootable.jvmArguments="-agentlib:jdwp=transport=dt_socket,address=0.0.0.0:${DEBUG_PORT},server=y,suspend=n" wildfly-jar:run
workingDir: $PROJECTS_ROOT
group:
kind: debug
isDefault: true
- id: dev-build
exec:
component: eap-xp
commandLine: mvn ${MVN_ARGS_APPEND} -Dmaven.test.skip=true -Ddev package
workingDir: $PROJECTS_ROOT
group:
kind: build
isDefault: false
- id: dev-run
exec:
component: eap-xp
commandLine: mvn ${MVN_ARGS_APPEND} wildfly-jar:dev
workingDir: $PROJECTS_ROOT
hotReloadCapable: true
group:
kind: run
isDefault: false
- id: dev-debug
exec:
component: eap-xp
commandLine: mvn ${MVN_ARGS_APPEND} -Dwildfly.bootable.arguments="-b=0.0.0.0" -Dwildfly.bootable.jvmArguments="-agentlib:jdwp=transport=dt_socket,address=0.0.0.0:${DEBUG_PORT},server=y,suspend=n" wildfly-jar:dev
workingDir: $PROJECTS_ROOT
hotReloadCapable: true
group:
kind: debug
isDefault: false