You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: charts/eap81/README.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -137,9 +137,11 @@ If the application image has been built by another mechanism, you can skip the b
137
137
| `build.s2i.galleonDir` | Directory relative to the root directory for the build that contains custom content for Galleon. | - | [EAP Documentation](https://access.redhat.com/documentation/en-us/red_hat_jboss_enterprise_application_platform/7.4/html/getting_started_with_jboss_eap_for_openshift_container_platform/index) |
138
138
| `build.s2i.featurePacks` | List of additional Galleon feature-packs identified by Maven coordinates (`<groupId>:<artifactId>:<version>`) | - | The value can be be either a `string` with a list of comma-separated Maven coordinate or an array where each item is the Maven coordinate of a feature pack - [EAP Documentation](https://access.redhat.com/documentation/en-us/red_hat_jboss_enterprise_application_platform/7.4/html/getting_started_with_jboss_eap_for_openshift_container_platform/index) |
139
139
| `build.s2i.channels` | List of Channels identified by Maven coordinates (`<groupId>:<artifactId>`). If featurePacks are configured without any versioning, the channels that provides the latest feature packs can be specified. Deprecated, the recommended way to provision EAP is to use the eap-maven-plugin in the application pom.xml | - | The value can be be either a `string` with a list of comma-separated Maven coordinate or an array where each item is the Maven coordinate of a channel - [EAP Documentation](https://access.redhat.com/documentation/en-us/red_hat_jboss_enterprise_application_platform/7.4/html/getting_started_with_jboss_eap_for_openshift_container_platform/index) |
140
-
| `build.s2i.jdk` | JDK Version of the EAP S2I images | `"17"` | Allowed Values: `"17"`|
140
+
| `build.s2i.jdk` | JDK Version of the EAP S2I images | `"17"` | Allowed Values: `"17", "21"`|
| `build.s2i.kind` | Determines the type of images for S2I Builder and Runtime images (`DockerImage`, `ImageStreamTag` or `ImageStreamImage`) | `DockerImage` | [OKD Documentation](https://docs.okd.io/latest/cicd/builds/build-strategies.html#builds-strategy-s2i-build_build-strategies) |
144
146
| `build.s2i.runtimeKind` | Determines the type of images for S2I Runtime image (`DockerImage`, `ImageStreamTag` or `ImageStreamImage`) | the value of `build.s2i.kind` | [OKD Documentation](https://docs.okd.io/latest/cicd/)|
145
147
| `build.sourceSecret`|Name of the secret containing the credentials to login to Git source reposiory | - | The secret must exist in the same namespace or the chart will fail to install - [OKD documentation](https://docs.okd.io/latest/cicd/builds/creating-build-inputs.html#builds-manually-add-source-clone-secrets_creating-build-inputs) |
Copy file name to clipboardexpand all lines: charts/eap81/values.schema.json
+17-3
Original file line number
Diff line number
Diff line change
@@ -234,7 +234,7 @@
234
234
"jdk": {
235
235
"description": "JDK Version of the EAP S2I images",
236
236
"type": "string",
237
-
"enum": ["17"],
237
+
"enum": ["17", "21"],
238
238
"default": "17"
239
239
},
240
240
"jdk17": {
@@ -248,9 +248,23 @@
248
248
"runtimeImage": {
249
249
"description": "EAP S2I Runtime image for JDK 17",
250
250
"type": "string"
251
-
}
252
251
}
253
-
},
252
+
}
253
+
},
254
+
"jdk21": {
255
+
"description": "EAP S2I images for JDK 21",
256
+
"type": "object",
257
+
"properties": {
258
+
"builderImage": {
259
+
"description": "EAP S2I Builder image for JDK 21",
260
+
"type": "string"
261
+
},
262
+
"runtimeImage": {
263
+
"description": "EAP S2I Runtime image for JDK 21",
264
+
"type": "string"
265
+
}
266
+
}
267
+
},
254
268
"buildApplicationImage": {
255
269
"description": "Determine if the application image must be built. If false, the Helm release will build the first artifact image (with the name of the Helm release)",
0 commit comments