Skip to content

Commit

Permalink
Merge pull request #150 from jfdenise/wf-23.0
Browse files Browse the repository at this point in the history
Wf 23.0
  • Loading branch information
jfdenise authored Mar 12, 2021
2 parents da9e709 + 7aa4b37 commit fbc3bfd
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
IMAGE_VERSION=dev
IMAGE_VERSION=23.0
NAMESPACE=wildfly
PLATFORM=centos7
IMAGE_NAME=${NAMESPACE}/wildfly-${PLATFORM}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ Building a new application image from the `wildfly-s2i-chained-build-template` (

Building a new application image from the `wildfly-s2i-chained-build-template` and provision a `cloud-profile` WildFly server (to be then managed by WildFly Operator):

* `oc new-app wildfly-s2i-chained-build-template -p GALLEON_PROVISION_SERVER=cloud-profile`
* `oc new-app wildfly-s2i-chained-build-template -p GALLEON_PROVISION_LAYERS=cloud-profile`

Building a new application image from the `wildfly-s2i-chained-build-template` with `wildfly` and `wildfly-runtime` imagestreams registered in `myproject` (to be then managed by WildFly Operator):

Expand All @@ -383,7 +383,7 @@ Starting a new deployment from an image created using `wildfly-s2i-chained-build

Create a new application from the `wildfly` imagestream (s2i build and OpenShift deployment) with a `jaxrs` provisioned server:

* `oc new-app --name=my-app wildfly~https://github.com/openshiftdemos/os-sample-java-web.git --build-env GALLEON_PROVISION_SERVER=jaxrs`
* `oc new-app --name=my-app wildfly~https://github.com/openshiftdemos/os-sample-java-web.git --build-env GALLEON_PROVISION_LAYERS=jaxrs`

Jolokia known issues
--------------------
Expand Down
20 changes: 20 additions & 0 deletions imagestreams/wildfly-centos7.json
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,26 @@
"type": "Local"
},
"name": "22.0"
},
{
"annotations": {
"description": "Build and run WildFly 23 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.",
"iconClass": "icon-wildfly",
"openshift.io/display-name": "WildFly 23",
"openshift.io/provider-display-name": "Red Hat, Inc.",
"sampleRepo": "https://github.com/openshift/openshift-jee-sample.git",
"supports": "wildfly:23,jee,java",
"tags": "builder,wildfly,java",
"version": "23.0"
},
"from": {
"kind": "DockerImage",
"name": "quay.io/wildfly/wildfly-centos7:23.0"
},
"referencePolicy": {
"type": "Local"
},
"name": "23.0"
}
]
}
Expand Down
19 changes: 19 additions & 0 deletions imagestreams/wildfly-runtime-centos7.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,25 @@
"type": "Local"
},
"name": "22.0"
},
{
"annotations": {
"description": "WildFly 23 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.",
"iconClass": "icon-wildfly",
"openshift.io/display-name": "WildFly Runtime Dependencies 23",
"openshift.io/provider-display-name": "Red Hat, Inc.",
"supports": "wildfly:23,jee,java",
"tags": "wildfly,java",
"version": "23.0"
},
"from": {
"kind": "DockerImage",
"name": "quay.io/wildfly/wildfly-runtime-centos7:23.0"
},
"referencePolicy": {
"type": "Local"
},
"name": "23.0"
}
]
}
Expand Down
6 changes: 3 additions & 3 deletions templates/wildfly-builder-imagestream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ spec:
from:
kind: DockerImage
name: "quay.io/wildfly/wildfly-centos7:latest"
- name: "22.0"
- name: "23.0"
annotations:
description: wildfly-builder image stream
iconClass: icon-wildfly
tags: builder,java,widlfly,galleon
sampleRepo: https://github.com/openshift/openshift-jee-sample.git
version: '22.0'
version: '23.0'
from:
kind: DockerImage
name: "quay.io/wildfly/wildfly-centos7:22.0"
name: "quay.io/wildfly/wildfly-centos7:23.0"
6 changes: 3 additions & 3 deletions templates/wildfly-runtime-imagestream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ spec:
from:
kind: DockerImage
name: "quay.io/wildfly/wildfly-runtime-centos7:latest"
- name: "22.0"
- name: "23.0"
annotations:
description: wildfly-runtime image stream
iconClass: icon-wildfly
tags: java,widlfly
version: '22.0'
version: '23.0'
from:
kind: DockerImage
name: "quay.io/wildfly/wildfly-runtime-centos7:22.0"
name: "quay.io/wildfly/wildfly-runtime-centos7:23.0"
4 changes: 2 additions & 2 deletions wildfly-builder-image/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ schema_version: 1

name: &imgName "wildfly/wildfly-centos7"
description: "The WildFly s2i image"
version: &imgVersion "dev"
version: &imgVersion "23.0"
from: "centos/s2i-base-centos7"
labels:
- name: io.k8s.description
Expand Down Expand Up @@ -34,7 +34,7 @@ modules:
- name: wildfly-cekit-modules
git:
url: https://github.com/wildfly/wildfly-cekit-modules
ref: master
ref: 0.23.0
- name: wildfly-s2i-modules
path: ../wildfly-modules
install:
Expand Down
2 changes: 1 addition & 1 deletion wildfly-runtime-image/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ schema_version: 1

name: &imgName "wildfly/wildfly-runtime-centos7"
description: "The WildFly runtime image"
version: &imgVersion "dev"
version: &imgVersion "23.0"
from: "centos:7"
labels:
- name: io.openshift.expose-services
Expand Down

0 comments on commit fbc3bfd

Please sign in to comment.