Skip to content

Commit 0788b4e

Browse files
authored
Merge pull request #55 from jfdenise/18.0
WF s2i 18
2 parents e78b6c4 + cd09bd1 commit 0788b4e

File tree

7 files changed

+50
-11
lines changed

7 files changed

+50
-11
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
IMAGE_VERSION=dev
1+
IMAGE_VERSION=18.0
22
NAMESPACE=wildfly
33
PLATFORM=centos7
44
IMAGE_NAME=${NAMESPACE}/wildfly-${PLATFORM}

imagestreams/wildfly-centos7.json

+20
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,26 @@
247247
"type": "Local"
248248
},
249249
"name": "17.0"
250+
},
251+
{
252+
"annotations": {
253+
"description": "Build and run WildFly 18 applications on CentOS 7. For more information about using this builder image, including OpenShift considerations, see https://github.com/wildfly/wildfly-s2i/blob/current/README.md.",
254+
"iconClass": "icon-wildfly",
255+
"openshift.io/display-name": "WildFly 18",
256+
"openshift.io/provider-display-name": "Red Hat, Inc.",
257+
"sampleRepo": "https://github.com/openshift/openshift-jee-sample.git",
258+
"supports": "wildfly:18,jee,java",
259+
"tags": "builder,wildfly,java",
260+
"version": "18.0"
261+
},
262+
"from": {
263+
"kind": "DockerImage",
264+
"name": "quay.io/wildfly/wildfly-centos7:18.0"
265+
},
266+
"referencePolicy": {
267+
"type": "Local"
268+
},
269+
"name": "18.0"
250270
}
251271
]
252272
}

imagestreams/wildfly-runtime-centos7.json

+20-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"tags": [
1212
{
1313
"annotations": {
14-
"description": "WildFly 17 runtime dependencies image based on CentOS 7. For more information about using this image, including OpenShift considerations, see https://github.com/wildfly/wildfly-s2i/blob/current/README.md.\n\nWARNING: By selecting this tag, your application will automatically update to use the latest version of WildFly available on OpenShift, including major versions updates.",
14+
"description": "WildFly runtime dependencies image based on CentOS 7. For more information about using this image, including OpenShift considerations, see https://github.com/wildfly/wildfly-s2i/blob/current/README.md.\n\nWARNING: By selecting this tag, your application will automatically update to use the latest version of WildFly available on OpenShift, including major versions updates.",
1515
"iconClass": "icon-wildfly",
1616
"openshift.io/display-name": "WildFly Runtime Dependencies (Latest)",
1717
"openshift.io/provider-display-name": "Red Hat, Inc.",
@@ -45,6 +45,25 @@
4545
"type": "Local"
4646
},
4747
"name": "17.0"
48+
},
49+
{
50+
"annotations": {
51+
"description": "WildFly 18 runtime dependencies image based on CentOS 7. For more information about using this image, including OpenShift considerations, see https://github.com/wildfly/wildfly-s2i/blob/current/README.md.",
52+
"iconClass": "icon-wildfly",
53+
"openshift.io/display-name": "WildFly Runtime Dependencies 18",
54+
"openshift.io/provider-display-name": "Red Hat, Inc.",
55+
"supports": "wildfly:18,jee,java",
56+
"tags": "wildfly,java",
57+
"version": "18.0"
58+
},
59+
"from": {
60+
"kind": "DockerImage",
61+
"name": "quay.io/wildfly/wildfly-runtime-centos7:18.0"
62+
},
63+
"referencePolicy": {
64+
"type": "Local"
65+
},
66+
"name": "18.0"
4867
}
4968
]
5069
}

templates/wildfly-builder-imagestream.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ spec:
1717
from:
1818
kind: DockerImage
1919
name: "quay.io/jfdenise/wildfly-centos7:latest"
20-
- name: "17.0"
20+
- name: "18.0"
2121
annotations:
2222
description: wildfly-builder image stream
2323
iconClass: icon-wildfly
2424
tags: builder,java,widlfly,galleon
2525
sampleRepo: https://github.com/openshift/openshift-jee-sample.git
26-
version: '17.0'
26+
version: '18.0'
2727
from:
2828
kind: DockerImage
29-
name: "quay.io/jfdenise/wildfly-centos7:17.0"
29+
name: "quay.io/jfdenise/wildfly-centos7:18.0"

templates/wildfly-runtime-imagestream.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ spec:
1414
from:
1515
kind: DockerImage
1616
name: "quay.io/jfdenise/wildfly-runtime-centos7:latest"
17-
- name: "17.0"
17+
- name: "18.0"
1818
annotations:
1919
description: wildfly-runtime image stream
2020
iconClass: icon-wildfly
2121
tags: java,widlfly
22-
version: '17.0'
22+
version: '18.0'
2323
from:
2424
kind: DockerImage
25-
name: "quay.io/jfdenise/wildfly-runtime-centos7:17.0"
25+
name: "quay.io/jfdenise/wildfly-runtime-centos7:18.0"

wildfly-builder-image/image.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ schema_version: 1
22

33
name: &imgName "wildfly/wildfly-centos7"
44
description: "The WildFly s2i image"
5-
version: &imgVersion "dev"
5+
version: &imgVersion "18.0"
66
from: "centos/s2i-base-centos7"
77
labels:
88
- name: io.k8s.description
@@ -34,7 +34,7 @@ modules:
3434
- name: wildfly-cekit-modules
3535
git:
3636
url: https://github.com/wildfly/wildfly-cekit-modules
37-
ref: master
37+
ref: wf-18.0
3838
- name: wildfly-s2i-modules
3939
path: ../wildfly-modules
4040
install:

wildfly-runtime-image/image.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ schema_version: 1
22

33
name: &imgName "wildfly/wildfly-runtime-centos7"
44
description: "The WildFly runtime image"
5-
version: &imgVersion "dev"
5+
version: &imgVersion "18.0"
66
from: "centos:7"
77
labels:
88
- name: io.openshift.expose-services

0 commit comments

Comments
 (0)